diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-11-19 10:26:29 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-11-19 10:26:29 +0100 |
commit | 16a24525bf8c40549ded60678a4c4ec25fce35c5 (patch) | |
tree | 6d6545a22522debd94b944c1472671392ee849c1 /src/core/lombok | |
parent | ffedb71cb52e32657d0426ef667f701a88f3fb9a (diff) | |
download | lombok-16a24525bf8c40549ded60678a4c4ec25fce35c5.tar.gz lombok-16a24525bf8c40549ded60678a4c4ec25fce35c5.tar.bz2 lombok-16a24525bf8c40549ded60678a4c4ec25fce35c5.zip |
Fix for reported NPEs by Stephen Haberman.
Diffstat (limited to 'src/core/lombok')
-rw-r--r-- | src/core/lombok/core/Version.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lombok/core/Version.java b/src/core/lombok/core/Version.java index 8bd39dd4..37b1a173 100644 --- a/src/core/lombok/core/Version.java +++ b/src/core/lombok/core/Version.java @@ -26,7 +26,7 @@ package lombok.core; */ public class Version { // ** CAREFUL ** - this class must always compile with 0 dependencies (it must not refer to any other sources or libraries). - private static final String VERSION = "0.10.0-BETA1"; + private static final String VERSION = "0.10.0-BETA2"; private static final String RELEASE_NAME = "Burning Emu"; private Version() { |