All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.iheartradio.m3u8.data.ObjectUtil Maven / Gradle / Ivy

package com.iheartradio.m3u8.data;

final class ObjectUtil {
    public static boolean equals(Object a, Object b) {
        if (a == null) {
            return b == null;
        } else {
            return a.equals(b);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy