# HG changeset patch # User Lukas Stadler # Date 1422396880 -3600 # Node ID ae0eb836e6f4e4224bd9874863043e334e8131d4 # Parent bdb24e259c116c073b3fbbb3434cd4cefe4134c4 store absolute file in FileSource diff -r bdb24e259c11 -r ae0eb836e6f4 graal/com.oracle.truffle.api/src/com/oracle/truffle/api/source/Source.java --- a/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/source/Source.java Tue Jan 27 23:12:58 2015 +0100 +++ b/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/source/Source.java Tue Jan 27 23:14:40 2015 +0100 @@ -542,7 +542,7 @@ private long timeStamp; // timestamp of the cache in the file system public FileSource(File file, String name, String path) { - this.file = file; + this.file = file.getAbsoluteFile(); this.name = name; this.path = path; }