From ede6b6547983a2c140b47d3792ca6fd0bb7f6624 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Fri, 18 Jan 2013 15:27:20 -0800 Subject: [PATCH] Cosmetics. --- .../org/eclipse/cdt/core/parser/FileContent.java | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) 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 c9821eaacf1..bae9031b403 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 @@ -13,7 +13,6 @@ package org.eclipse.cdt.core.parser; import java.io.File; -import java.io.InputStream; import org.eclipse.cdt.core.dom.ast.IASTFileLocation; import org.eclipse.cdt.core.index.IIndexFileLocation; @@ -139,14 +138,9 @@ public abstract class FileContent { return null; long fileReadTime = System.currentTimeMillis(); - String path = reader.getPath(); - File file = new File(path); - CharArray chars = new CharArray(reader.buffer); - - - FileContent fileContent = new InternalFileContent(path, chars , file.lastModified(), file.length(), fileReadTime); - - return fileContent; + String filePath = reader.getPath(); + File file = new File(filePath); + return new InternalFileContent(filePath, chars, file.lastModified(), file.length(), fileReadTime); } }