Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/Objects.java')
-rw-r--r--plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/Objects.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/Objects.java b/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/Objects.java
index 0fc6e834c72..676ef0f5d46 100644
--- a/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/Objects.java
+++ b/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/Objects.java
@@ -21,9 +21,6 @@ public final class Objects {
* Produces a hash code that uses all of the supplied values. This method is guaranteed to return the same value
* given the same input.
*
- * @param PRIME_1
- * @param PRIME_2
- * @param data
*/
public static int hashCode(int PRIME_1, int PRIME_2, Object... data) {
int result = PRIME_1;

Back to the top