diff options
author | aclement <aclement> | 2004-12-10 15:31:47 +0000 |
---|---|---|
committer | aclement <aclement> | 2004-12-10 15:31:47 +0000 |
commit | 379eb69126a1d904c2f4a6a63a97c138a7712791 (patch) | |
tree | 446c046529953afb1ef0d8cb5f3400138202acc0 /build/src | |
parent | b1111a9826f2734fd770183138bc0d74fad40579 (diff) | |
download | aspectj-379eb69126a1d904c2f4a6a63a97c138a7712791.tar.gz aspectj-379eb69126a1d904c2f4a6a63a97c138a7712791.zip |
Updates for AJDK1.5.0
Diffstat (limited to 'build/src')
-rw-r--r-- | build/src/$installer$/org/aspectj/Main.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/src/$installer$/org/aspectj/Main.java b/build/src/$installer$/org/aspectj/Main.java index 0e40b7843..65ba9be5a 100644 --- a/build/src/$installer$/org/aspectj/Main.java +++ b/build/src/$installer$/org/aspectj/Main.java @@ -1009,9 +1009,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.2"; + return "c:\\aspectj1.5"; } else { - return new File(System.getProperty("user.home"), "aspectj1.2").getAbsolutePath(); + return new File(System.getProperty("user.home"), "aspectj1.5").getAbsolutePath(); } } |