Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.ui.workspacebundleloader/src/org/eclipse/osee/framework/ui/workspacebundleloader')
-rw-r--r--plugins/org.eclipse.osee.framework.ui.workspacebundleloader/src/org/eclipse/osee/framework/ui/workspacebundleloader/JarChangeResourceListener.java6
-rw-r--r--plugins/org.eclipse.osee.framework.ui.workspacebundleloader/src/org/eclipse/osee/framework/ui/workspacebundleloader/JarCollectionNature.java3
2 files changed, 0 insertions, 9 deletions
diff --git a/plugins/org.eclipse.osee.framework.ui.workspacebundleloader/src/org/eclipse/osee/framework/ui/workspacebundleloader/JarChangeResourceListener.java b/plugins/org.eclipse.osee.framework.ui.workspacebundleloader/src/org/eclipse/osee/framework/ui/workspacebundleloader/JarChangeResourceListener.java
index fe2aae3e21e..910ffab61d0 100644
--- a/plugins/org.eclipse.osee.framework.ui.workspacebundleloader/src/org/eclipse/osee/framework/ui/workspacebundleloader/JarChangeResourceListener.java
+++ b/plugins/org.eclipse.osee.framework.ui.workspacebundleloader/src/org/eclipse/osee/framework/ui/workspacebundleloader/JarChangeResourceListener.java
@@ -96,9 +96,6 @@ public class JarChangeResourceListener<T extends JarCollectionNature> implements
}
}
- /**
- * @return
- */
private boolean isModifyingChange(IResourceDelta pluginDelta) {
boolean synch = (pluginDelta.getFlags() & IResourceDelta.SYNC) != 0;
// boolean content = (pluginDelta.getFlags() & IResourceDelta.CONTENT) != 0;
@@ -158,9 +155,6 @@ public class JarChangeResourceListener<T extends JarCollectionNature> implements
}
}
- /**
- * @return
- */
protected String generateEventString(int type) {
switch (type) {
case IResourceChangeEvent.POST_BUILD:
diff --git a/plugins/org.eclipse.osee.framework.ui.workspacebundleloader/src/org/eclipse/osee/framework/ui/workspacebundleloader/JarCollectionNature.java b/plugins/org.eclipse.osee.framework.ui.workspacebundleloader/src/org/eclipse/osee/framework/ui/workspacebundleloader/JarCollectionNature.java
index f27ad3db4d8..86e79862d04 100644
--- a/plugins/org.eclipse.osee.framework.ui.workspacebundleloader/src/org/eclipse/osee/framework/ui/workspacebundleloader/JarCollectionNature.java
+++ b/plugins/org.eclipse.osee.framework.ui.workspacebundleloader/src/org/eclipse/osee/framework/ui/workspacebundleloader/JarCollectionNature.java
@@ -134,9 +134,6 @@ public class JarCollectionNature implements IProjectNature {
return paths;
}
- /**
- * @return
- */
private Manifest getManifestFile() {
try {
File manifestFile = project.getLocation().append("META-INF").append("MANIFEST.MF").toFile();

Back to the top