diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/FileContent.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/FileContent.java index 748a2245ad6..8594ace9c3c 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/FileContent.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/FileContent.java @@ -141,6 +141,6 @@ public abstract class FileContent { CharArray chars = new CharArray(reader.buffer); String filePath = reader.getPath(); File file = new File(filePath); - return new InternalFileContent(filePath, chars, file.lastModified(), file.length(), fileReadTime); + return new InternalFileContent(filePath, chars, file.lastModified(), file.length(), fileReadTime); } }