summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authormkersten <mkersten>2003-09-05 06:49:08 +0000
committermkersten <mkersten>2003-09-05 06:49:08 +0000
commit365ba016e1a854591ec2e872b050a40174a453eb (patch)
treeee622350f4c574246136166ace24dbe68613c59f /util
parentb42236b95ab40fffdab9acb6261a738b8d416b50 (diff)
downloadaspectj-365ba016e1a854591ec2e872b050a40174a453eb.tar.gz
aspectj-365ba016e1a854591ec2e872b050a40174a453eb.zip
Exposed file creation to allow overriding (for the use of canonicalization).
Diffstat (limited to 'util')
-rw-r--r--util/src/org/aspectj/util/ConfigParser.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/src/org/aspectj/util/ConfigParser.java b/util/src/org/aspectj/util/ConfigParser.java
index ae14e1f6f..0c3ea1e2e 100644
--- a/util/src/org/aspectj/util/ConfigParser.java
+++ b/util/src/org/aspectj/util/ConfigParser.java
@@ -205,7 +205,7 @@ public class ConfigParser {
return makeFile(getCurrentDir(), name);
}
- File makeFile(File dir, String name) {
+ protected File makeFile(File dir, String name) {
name = name.replace('/', File.separatorChar);
File ret = new File(name);
if (dir == null || ret.isAbsolute()) return ret;