You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by da...@apache.org on 2017/02/06 12:03:44 UTC

svn commit: r1781885 - /felix/trunk/converter/converter/src/main/java/org/osgi/util/converter/Converter.java

Author: davidb
Date: Mon Feb  6 12:03:44 2017
New Revision: 1781885

URL: http://svn.apache.org/viewvc?rev=1781885&view=rev
Log:
Updated Converter API from OSGi

Originating OSGi commit: f97697c0b496f7bf6f26d59d0ef70a6dbdb811a3

Modified:
    felix/trunk/converter/converter/src/main/java/org/osgi/util/converter/Converter.java

Modified: felix/trunk/converter/converter/src/main/java/org/osgi/util/converter/Converter.java
URL: http://svn.apache.org/viewvc/felix/trunk/converter/converter/src/main/java/org/osgi/util/converter/Converter.java?rev=1781885&r1=1781884&r2=1781885&view=diff
==============================================================================
--- felix/trunk/converter/converter/src/main/java/org/osgi/util/converter/Converter.java (original)
+++ felix/trunk/converter/converter/src/main/java/org/osgi/util/converter/Converter.java Mon Feb  6 12:03:44 2017
@@ -22,7 +22,6 @@ import org.osgi.annotation.versioning.Pr
  * from the service registry. The conversion is then completed via the
  * Converting interface that has methods to specify the target type.
  *
- * @author $Id: 9b4f95a44c40d64e9ad3653fcf7be03d63713a83 $
  * @ThreadSafe
  */
 @ProviderType
@@ -42,17 +41,4 @@ public interface Converter {
 	 * @return A new Converter Builder.
 	 */
 	ConverterBuilder newConverterBuilder();
-
-	/**
-	 * Check whether two objects are logically equal. For example when two
-	 * map-like structures are compared the contents are converted to a common
-	 * type and then compared. This method recursively compares any nested
-	 * objects
-	 * 
-	 * @param o1 The first object.
-	 * @param o2 The second object.
-	 * @return {@code true} if the two objects are logically equal, otherwise
-	 *         {@code false}.
-	 */
-	boolean equals(Object o1, Object o2);
 }