Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/LibraryAPIsScope.java')
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/LibraryAPIsScope.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/LibraryAPIsScope.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/LibraryAPIsScope.java
index 6cd0d4db..2fbb4cb2 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/LibraryAPIsScope.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/LibraryAPIsScope.java
@@ -46,7 +46,7 @@ public LibraryAPIsScope(LibraryAPIs apis, LookupEnvironment environment) {
translations.put("string".toCharArray(), "String".toCharArray());
translations.put("array".toCharArray(), "Array".toCharArray());
- CompilationResult result = new CompilationResult(apis.fileName,new char[][]{},0,0,0);
+ CompilationResult result = new CompilationResult(apis.fileName, new char[][]{},0,0,0);
CompilationUnitDeclaration unit = new CompilationUnitDeclaration(environment.problemReporter,result,0);
unit.scope=this;
this.referenceContext=unit;

Back to the top