Remove EvenMoreObjects 55/108255/1
authorRobert Varga <robert.varga@pantheon.tech>
Thu, 5 Oct 2023 15:02:40 +0000 (17:02 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Thu, 5 Oct 2023 15:02:40 +0000 (17:02 +0200)
This class is completely unused and deprecated for removal. Remove it as
part of this major version bump.

Change-Id: Ic1daa590d19595d78f07884c5f5af4d2b992e82e
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
common/util/src/main/java/org/opendaylight/yangtools/util/EvenMoreObjects.java [deleted file]
common/util/src/test/java/org/opendaylight/yangtools/util/EvenMoreObjectsTest.java [deleted file]

diff --git a/common/util/src/main/java/org/opendaylight/yangtools/util/EvenMoreObjects.java b/common/util/src/main/java/org/opendaylight/yangtools/util/EvenMoreObjects.java
deleted file mode 100644 (file)
index a9fbcac..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * Copyright (c) 2016 Red Hat, Inc. and others. All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-package org.opendaylight.yangtools.util;
-
-import com.google.common.base.MoreObjects;
-import java.util.function.BiFunction;
-
-/**
- * Utility helping to implement readable equals() methods.
- *
- * <p>Usage:
- * <pre>
- *{@literal @}Override
- * public boolean equals(Object obj) {
- *     return EvenMoreObjects.equalsHelper(this, obj,
- *        (one, another) -&gt; Objects.equals(one.name, another.name) &amp;&amp; Objects.equals(one.age, another.age));
- * }
- * </pre>
- *
- * <p>See <a href="https://github.com/google/guava/issues/2521">Guava issue proposing contributing this</a>.
- *
- * @see MoreObjects
- *
- * @author Michael Vorburger, Red Hat
- */
-@Deprecated(since = "11.0.0", forRemoval = true)
-public final class EvenMoreObjects {
-
-    @SuppressWarnings("unchecked")
-    public static <T> boolean equalsHelper(final T self, final Object other, final BooleanEqualsFunction<T> equals) {
-        if (other == self) {
-            return true;
-        }
-        if (other == null) {
-            return false;
-        }
-        if (self.getClass() != other.getClass()) {
-            return false;
-        }
-        return equals.apply(self, (T) other);
-    }
-
-    @FunctionalInterface
-    public interface BooleanEqualsFunction<T> extends BiFunction<T, T, Boolean> { }
-
-    private EvenMoreObjects() {
-
-    }
-}
-
diff --git a/common/util/src/test/java/org/opendaylight/yangtools/util/EvenMoreObjectsTest.java b/common/util/src/test/java/org/opendaylight/yangtools/util/EvenMoreObjectsTest.java
deleted file mode 100644 (file)
index 3847907..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-/*
- * Copyright (c) 2016 Red Hat, Inc. and others. All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-package org.opendaylight.yangtools.util;
-
-import static org.junit.Assert.assertTrue;
-
-import com.google.common.base.MoreObjects;
-import com.google.common.testing.EqualsTester;
-import java.util.Objects;
-import org.junit.Test;
-
-@Deprecated(since = "11.0.0", forRemoval = true)
-public class EvenMoreObjectsTest {
-
-    @Test
-    public void thingPassesEqualsTester() {
-        new EqualsTester()
-                .addEqualityGroup(new Thing("hello", 123), new Thing("hello", 123))
-                .addEqualityGroup(new Thing("hoi", 123), new Thing("hoi", 123))
-                .addEqualityGroup(new Thing("hoi", null))
-                .addEqualityGroup(new Thing(null, null))
-                .testEquals();
-    }
-
-    @Test
-    public void nullEqualsNull() {
-        assertTrue(EvenMoreObjects.equalsHelper(null, null, (one, another) -> Boolean.TRUE));
-    }
-
-    private static class Thing {
-        String name;
-        Integer age;
-
-        @Override
-        public boolean equals(final Object obj) {
-            return EvenMoreObjects.equalsHelper(this, obj,
-                (one, another) -> Objects.equals(one.name, another.name) && Objects.equals(one.age, another.age));
-        }
-
-        @Override
-        public int hashCode() {
-            return Objects.hash(name, age);
-        }
-
-        @Override
-        public String toString() {
-            return MoreObjects.toStringHelper(this).add("name", name).add("age", age).toString();
-        }
-
-        Thing(final String name, final Integer age) {
-            this.name = name;
-            this.age = age;
-        }
-    }
-}