aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/lombok/core/Version.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lombok/core/Version.java b/src/core/lombok/core/Version.java
index 6b1ed0f8..0ceabc51 100644
--- a/src/core/lombok/core/Version.java
+++ b/src/core/lombok/core/Version.java
@@ -71,7 +71,7 @@ public class Version {
String version = String.format("v%s \"%s\"", VERSION, RELEASE_NAME);
if (!isEdgeRelease()) return version;
- InputStream in = Version.class.getResourceAsStream("release-timestamp.txt");
+ InputStream in = Version.class.getResourceAsStream("/release-timestamp.txt");
if (in == null) return version;
try {
byte[] data = new byte[65536];
@@ -97,7 +97,7 @@ public class Version {
int lastIdx = VERSION.lastIndexOf('.');
if (lastIdx == -1) return false;
try {
- return Integer.parseInt(VERSION.substring(lastIdx + 1)) % 1 == 1;
+ return Integer.parseInt(VERSION.substring(lastIdx + 1)) % 2 == 1;
} catch (Exception e) {
return false;
}