We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea5121e commit 42e5759Copy full SHA for 42e5759
src/main/java/dcd/ui/DeadCodeDetectorUI.java
@@ -69,9 +69,9 @@ public DeadCodeDetectorUI(Parameters parameters) {
69
70
static void showFrame(final File propertiesFile) {
71
try {
72
- if (System.getProperty("java.version").compareTo("1.6") < 0) {
+ if (System.getProperty("java.version").compareTo("1.7") < 0) {
73
throw new IllegalStateException(
74
- "You must use a JRE version >= 1.6. Download it from http://java.com");
+ "You must use a JRE version >= 1.7. Download it from http://java.com");
75
}
76
77
Class.forName("org.objectweb.asm.ClassReader");
0 commit comments