Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.ui.markers/src/org/eclipse/osee/ote/ui/markers/ProcessOutfileSax.java')
-rw-r--r--plugins/org.eclipse.osee.ote.ui.markers/src/org/eclipse/osee/ote/ui/markers/ProcessOutfileSax.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.ote.ui.markers/src/org/eclipse/osee/ote/ui/markers/ProcessOutfileSax.java b/plugins/org.eclipse.osee.ote.ui.markers/src/org/eclipse/osee/ote/ui/markers/ProcessOutfileSax.java
index 6613532a26a..d69d470945b 100644
--- a/plugins/org.eclipse.osee.ote.ui.markers/src/org/eclipse/osee/ote/ui/markers/ProcessOutfileSax.java
+++ b/plugins/org.eclipse.osee.ote.ui.markers/src/org/eclipse/osee/ote/ui/markers/ProcessOutfileSax.java
@@ -40,7 +40,6 @@ import org.xml.sax.helpers.XMLReaderFactory;
public class ProcessOutfileSax implements IExceptionableRunnable {
private final IFile file;
- private final MarkerPlugin plugin;
private static final int _1_MB = 1048576;
private static final int _20_MB = _1_MB * 20;
@@ -50,9 +49,8 @@ public class ProcessOutfileSax implements IExceptionableRunnable {
private CheckPointData currentCheckPoint = null;
protected StackTraceCollection currentStackTrace;
- public ProcessOutfileSax(MarkerPlugin plugin, IFile file) {
+ public ProcessOutfileSax(IFile file) {
this.file = file;
- this.plugin = plugin;
}
@Override
@@ -75,7 +73,7 @@ public class ProcessOutfileSax implements IExceptionableRunnable {
parseContents(contents);
OteMarkerHelper helper = new OteMarkerHelper(this.testPointDatas);
- plugin.updateMarkerInfo(file, helper.getMarkers());
+ MarkerPlugin.updateMarkerInfo(file, helper.getMarkers());
return Status.OK_STATUS;
}

Back to the top