Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonald.g.dunne2013-12-13 22:19:26 +0000
committerGerrit Code Review @ Eclipse.org2013-12-17 21:00:12 +0000
commitec7531d3cae70fc3c17080509d31332469372a2b (patch)
tree9d59381b13d0035ed94339010886b7257e06a59a /plugins/org.eclipse.osee.framework.core.model
parentd30b41abb454f0e3270bd0ac573c3278f5660eb9 (diff)
downloadorg.eclipse.osee-ec7531d3cae70fc3c17080509d31332469372a2b.tar.gz
org.eclipse.osee-ec7531d3cae70fc3c17080509d31332469372a2b.tar.xz
org.eclipse.osee-ec7531d3cae70fc3c17080509d31332469372a2b.zip
refactor: Remove all invalid SuppressWarnings uses
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.model')
-rw-r--r--plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/internal/fields/CollectionField.java1
-rw-r--r--plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/tabledataframework/TableDataImpl.java2
2 files changed, 0 insertions, 3 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 3e5840705c2..24ed7558938 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
@@ -43,7 +43,6 @@ 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;
diff --git a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/tabledataframework/TableDataImpl.java b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/tabledataframework/TableDataImpl.java
index 486e3821350..bdae75718a9 100644
--- a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/tabledataframework/TableDataImpl.java
+++ b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/tabledataframework/TableDataImpl.java
@@ -158,7 +158,6 @@ public class TableDataImpl implements TableData {
* (for any reason) and should not be included in the report.
* @throws OseeCoreException
*/
- @SuppressWarnings("unused")
protected boolean validateRow(Collection<Object> rowData) throws OseeCoreException {
//Override with subclass if needed
return true;
@@ -172,7 +171,6 @@ public class TableDataImpl implements TableData {
* @return Return symantics is the same as validateRow()
* @throws OseeCoreException
*/
- @SuppressWarnings("unused")
protected boolean validateRowUseOnlyKeyColums() throws OseeCoreException {
//Override with subclass if needed
return true;

Back to the top