Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.osgi/osgi/src/org/osgi/resource/Wire.java')
-rw-r--r--bundles/org.eclipse.osgi/osgi/src/org/osgi/resource/Wire.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/osgi/src/org/osgi/resource/Wire.java b/bundles/org.eclipse.osgi/osgi/src/org/osgi/resource/Wire.java
index 6c248ea2b..a0d1c39e1 100644
--- a/bundles/org.eclipse.osgi/osgi/src/org/osgi/resource/Wire.java
+++ b/bundles/org.eclipse.osgi/osgi/src/org/osgi/resource/Wire.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) OSGi Alliance (2011, 2013). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2011, 2015). All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -79,6 +79,7 @@ public interface Wire {
* @return {@code true} if this {@code Wire} is equal to the other object;
* {@code false} otherwise.
*/
+ @Override
boolean equals(Object obj);
/**
@@ -86,5 +87,6 @@ public interface Wire {
*
* @return The hashCode of this {@code Wire}.
*/
+ @Override
int hashCode();
}

Back to the top