| Index: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/builder/AnalysisMarkerManager_NEW.java
|
| diff --git a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/builder/AnalysisMarkerManager.java b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/builder/AnalysisMarkerManager_NEW.java
|
| similarity index 97%
|
| copy from editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/builder/AnalysisMarkerManager.java
|
| copy to editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/builder/AnalysisMarkerManager_NEW.java
|
| index b282a7892c73fa92f2f59854f4fc85008700681d..64e75c3a5e2dc1d43b29b0e7a6f0c0e7c5110f2c 100644
|
| --- a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/builder/AnalysisMarkerManager.java
|
| +++ b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/builder/AnalysisMarkerManager_NEW.java
|
| @@ -1,5 +1,5 @@
|
| /*
|
| - * Copyright (c) 2013, the Dart project authors.
|
| + * Copyright (c) 2014, the Dart project authors.
|
| *
|
| * Licensed under the Eclipse Public License v1.0 (the "License"); you may not use this file except
|
| * in compliance with the License. You may obtain a copy of the License at
|
| @@ -13,11 +13,11 @@
|
| */
|
| package com.google.dart.tools.core.internal.builder;
|
|
|
| -import com.google.dart.engine.error.AnalysisError;
|
| import com.google.dart.engine.error.ErrorCode;
|
| import com.google.dart.engine.error.ErrorSeverity;
|
| import com.google.dart.engine.error.ErrorType;
|
| import com.google.dart.engine.utilities.source.LineInfo;
|
| +import com.google.dart.server.AnalysisError;
|
| import com.google.dart.tools.core.DartCore;
|
|
|
| import org.apache.commons.lang3.StringUtils;
|
| @@ -50,7 +50,7 @@ import java.util.ArrayList;
|
| *
|
| * @coverage dart.tools.core.builder
|
| */
|
| -public class AnalysisMarkerManager {
|
| +public class AnalysisMarkerManager_NEW {
|
|
|
| /**
|
| * Errors to be translated into markers
|
| @@ -212,7 +212,7 @@ public class AnalysisMarkerManager {
|
| /**
|
| * The singleton used for translating {@link AnalysisError}s into Eclipse markers.
|
| */
|
| - private static final AnalysisMarkerManager INSTANCE = new AnalysisMarkerManager(
|
| + private static final AnalysisMarkerManager_NEW INSTANCE = new AnalysisMarkerManager_NEW(
|
| ResourcesPlugin.getWorkspace());
|
|
|
| /**
|
| @@ -236,7 +236,7 @@ public class AnalysisMarkerManager {
|
| *
|
| * @return the marker manager (not {@code null})
|
| */
|
| - public static AnalysisMarkerManager getInstance() {
|
| + public static AnalysisMarkerManager_NEW getInstance() {
|
| return INSTANCE;
|
| }
|
|
|
| @@ -311,7 +311,7 @@ public class AnalysisMarkerManager {
|
| /**
|
| * Construct a new instance for translating errors to markers using the specified workspace.
|
| */
|
| - public AnalysisMarkerManager(IWorkspace workspace) {
|
| + public AnalysisMarkerManager_NEW(IWorkspace workspace) {
|
| this.workspace = workspace;
|
| }
|
|
|
|
|