X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/Compiler.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/Compiler.java index ea02cbb..a360dae 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/Compiler.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/Compiler.java @@ -14,6 +14,8 @@ import java.io.StringWriter; import java.util.Map; import net.sourceforge.phpdt.core.compiler.IProblem; +import net.sourceforge.phpdt.internal.compiler.ast.CompilationUnitDeclaration; +import net.sourceforge.phpdt.internal.compiler.ast.TypeDeclaration; import net.sourceforge.phpdt.internal.compiler.env.IBinaryType; import net.sourceforge.phpdt.internal.compiler.env.ICompilationUnit; import net.sourceforge.phpdt.internal.compiler.env.INameEnvironment; @@ -28,8 +30,6 @@ import net.sourceforge.phpdt.internal.compiler.problem.AbortCompilationUnit; import net.sourceforge.phpdt.internal.compiler.problem.ProblemReporter; import net.sourceforge.phpdt.internal.compiler.problem.ProblemSeverities; import net.sourceforge.phpdt.internal.compiler.util.Util; -import net.sourceforge.phpeclipse.internal.compiler.ast.CompilationUnitDeclaration; -import net.sourceforge.phpeclipse.internal.compiler.ast.TypeDeclaration; public class Compiler implements ITypeRequestor, ProblemSeverities { public UnitParser parser; @@ -165,7 +165,7 @@ public class Compiler implements ITypeRequestor, ProblemSeverities { * @param parseLiteralExpressionsAsConstants * boolean This parameter is used to optimize the * literals or leave them as they are in the source. If you put - * true, "Hello" + " world" will be converted to "Hello world". + * true, "Hello" . " world" will be converted to "Hello world". */ public Compiler(INameEnvironment environment, IErrorHandlingPolicy policy, Map settings, final ICompilerRequestor requestor, @@ -341,11 +341,11 @@ public class Compiler implements ITypeRequestor, ProblemSeverities { // if (options.verbose) { // if (totalUnits > 1) { // System.out.println( - // Util.bind("compilation.units" , String.valueOf(totalUnits))); + // ProjectPrefUtil.bind("compilation.units" , String.valueOf(totalUnits))); // //$NON-NLS-1$ // } else { // System.out.println( - // Util.bind("compilation.unit" , String.valueOf(totalUnits))); + // ProjectPrefUtil.bind("compilation.unit" , String.valueOf(totalUnits))); // //$NON-NLS-1$ // } // } @@ -613,4 +613,4 @@ public class Compiler implements ITypeRequestor, ProblemSeverities { } } -} +} \ No newline at end of file