public boolean equals()

in src/main/java/org/apache/sling/datasource/internal/DriverRegistry.java [152:162]


        public boolean equals(Object o) {
            if (this == o) return true;
            if (o == null || getClass() != o.getClass()) return false;

            DriverInfo that = (DriverInfo) o;

            if (!(bundle == that.bundle)) return false;
            if (!(driver == that.driver)) return false;

            return true;
        }