Skip to content

Commit 42e5759

Browse files
committed
update java level
1 parent ea5121e commit 42e5759

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/dcd/ui/DeadCodeDetectorUI.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ public DeadCodeDetectorUI(Parameters parameters) {
6969

7070
static void showFrame(final File propertiesFile) {
7171
try {
72-
if (System.getProperty("java.version").compareTo("1.6") < 0) {
72+
if (System.getProperty("java.version").compareTo("1.7") < 0) {
7373
throw new IllegalStateException(
74-
"You must use a JRE version >= 1.6. Download it from http://java.com");
74+
"You must use a JRE version >= 1.7. Download it from http://java.com");
7575
}
7676
try {
7777
Class.forName("org.objectweb.asm.ClassReader");

0 commit comments

Comments
 (0)