[Closes #928] @Value no longer makes uninitialized static fields final

This commit is contained in:
Roel Spilker
2015-09-24 00:28:57 +02:00
parent 1bc73d7703
commit 9fbc226e09
6 changed files with 66 additions and 4 deletions
@@ -0,0 +1,5 @@
import lombok.Value;
@Value class ValueStaticField {
static int x;
static String PASSWORD = "Ken sent me";
}