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

de.intarsys.tools.lang.LangTools Maven / Gradle / Ivy

There is a newer version: 4.11
Show newest version
package de.intarsys.tools.lang;

public class LangTools {

	static public boolean equals(Object a, Object b) {
		if (a == null && b == null) {
			return true;
		}
		if (a == null && b != null) {
			return false;
		}
		return a.equals(b);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy