Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/internal/fields/CollectionField.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/internal/fields/CollectionField.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/internal/fields/CollectionField.java b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/internal/fields/CollectionField.java
index b3ea4273cde..466f73925fe 100644
--- a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/internal/fields/CollectionField.java
+++ b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/internal/fields/CollectionField.java
@@ -28,7 +28,7 @@ public class CollectionField<T> extends AbstractOseeField<Collection<T>> {
}
@Override
- public Collection<T> get() throws OseeCoreException {
+ public Collection<T> get() {
return items;
}
@@ -43,6 +43,8 @@ public class CollectionField<T> extends AbstractOseeField<Collection<T>> {
isDirty |= isDifferent;
}
+ @SuppressWarnings("unused")
+ //OseeCoreException is thrown by inherited class
protected Collection<T> checkInput(Collection<T> input) throws OseeCoreException {
return input;
}

Back to the top