Browse Source

fix install location to 1.7

tags/V1_7_0
Andy Clement 12 years ago
parent
commit
f0ca363a58
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      build/src/$installer$/org/aspectj/Main.java

+ 2
- 2
build/src/$installer$/org/aspectj/Main.java View File

@@ -998,9 +998,9 @@ class LocationPane extends WizardPane implements ActionListener {
public String getDefaultLocation() {
if (context.onWindows()) {
//XXX hard-coded majorminor version needs to be fixed by 1.1 release
return "c:\\aspectj1.6";
return "c:\\aspectj1.7";
} else {
return new File(System.getProperty("user.home"), "aspectj1.6").getAbsolutePath();
return new File(System.getProperty("user.home"), "aspectj1.7").getAbsolutePath();
}
}


Loading…
Cancel
Save