Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrbrooks2010-07-18 03:08:17 +0000
committerrbrooks2010-07-18 03:08:17 +0000
commit3714c98744eddb43c46926f12ffc2687a5e11181 (patch)
tree1c2310f7dae455d5b46f4afd1b3d84004f30f04a
parent799d9bf8c6b08e7a155bfdab8f58be342dc96904 (diff)
downloadorg.eclipse.osee-3714c98744eddb43c46926f12ffc2687a5e11181.tar.gz
org.eclipse.osee-3714c98744eddb43c46926f12ffc2687a5e11181.tar.xz
org.eclipse.osee-3714c98744eddb43c46926f12ffc2687a5e11181.zip
fixed warning
-rw-r--r--plugins/org.eclipse.osee.framework.plugin.core/src/org/eclipse/osee/framework/plugin/core/util/Jobs.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.framework.plugin.core/src/org/eclipse/osee/framework/plugin/core/util/Jobs.java b/plugins/org.eclipse.osee.framework.plugin.core/src/org/eclipse/osee/framework/plugin/core/util/Jobs.java
index 1d20d97a42a..adbf2c6afbf 100644
--- a/plugins/org.eclipse.osee.framework.plugin.core/src/org/eclipse/osee/framework/plugin/core/util/Jobs.java
+++ b/plugins/org.eclipse.osee.framework.plugin.core/src/org/eclipse/osee/framework/plugin/core/util/Jobs.java
@@ -21,6 +21,7 @@ import org.eclipse.osee.framework.core.operation.Operations;
public final class Jobs {
private Jobs() {
+ // this private empty constructor exists to prevent the default constructor from allowing public construction
}
public static Job startJob(Job job, IJobChangeListener jobChangeListener) {

Back to the top