From 5a650d1e6e4abf6e3c3dfcd5c28c9e9bd7201c82 Mon Sep 17 00:00:00 2001 From: John Camelon Date: Mon, 16 Aug 2004 17:34:01 +0000 Subject: [PATCH] Made DEFAULT encoding name a public member of CodeReader. --- .../parser/org/eclipse/cdt/core/parser/CodeReader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/CodeReader.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/CodeReader.java index 9d7c429f685..44b8d753cdc 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/CodeReader.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/CodeReader.java @@ -25,7 +25,7 @@ import org.eclipse.cdt.internal.core.parser.scanner2.CharArrayUtils; * @author jcamelon */ public class CodeReader { - private static final String SYSTEM_DEFAULT_ENCODING = System.getProperty( "file.encoding" ); //$NON-NLS-1$ + public static final String SYSTEM_DEFAULT_ENCODING = System.getProperty( "file.encoding" ); //$NON-NLS-1$ //private static final String UTF_8 = "UTF-8"; //$NON-NLS-1$ private static final String NF = ""; //$NON-NLS-1$ private static final char [] NOFILE = NF.toCharArray(); //$NON-NLS-1$