Explorar el Código

Exposed file creation to allow overriding (for the use of canonicalization).

tags/V1_1_1
mkersten hace 21 años
padre
commit
365ba016e1
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      util/src/org/aspectj/util/ConfigParser.java

+ 1
- 1
util/src/org/aspectj/util/ConfigParser.java Ver fichero

@@ -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;

Cargando…
Cancelar
Guardar