diff options
author | Andy Clement <andrew.clement@gmail.com> | 2012-05-28 08:44:13 -0700 |
---|---|---|
committer | Andy Clement <andrew.clement@gmail.com> | 2012-05-28 08:44:13 -0700 |
commit | f0ca363a58b8d54e5313f4e56e68f116afb2c27f (patch) | |
tree | f191d921eb3f7e375226ef7277b29989180f702d /build/src | |
parent | 7aad69eae7052e328ef156200e7ea82a386eed13 (diff) | |
download | aspectj-f0ca363a58b8d54e5313f4e56e68f116afb2c27f.tar.gz aspectj-f0ca363a58b8d54e5313f4e56e68f116afb2c27f.zip |
fix install location to 1.7
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 24256b3c7..9f23d972a 100644 --- a/build/src/$installer$/org/aspectj/Main.java +++ b/build/src/$installer$/org/aspectj/Main.java @@ -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(); } } |