Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BOTH (1.76 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraphEdge.java

        private static boolean objectsEqual(Object o1, Object o2) {
            if (o1 == null && o2 == null) {
                return true;
            }
            if (o1 == null || o2 == null) {
                return false; // as they are not both null
            }
            return o1.equals(o2);
        }
    
        // ----------------------------------------------------------------------------
        /**
         * used to eliminate exact duplicates in the edge list
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top