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

com.thaiopensource.util.Equal Maven / Gradle / Ivy

Go to download

A branch of Jing used by the Nu Html Checker. (Jing is a tool for validating documents against RelaxNG schemas.)

The newest version!
package com.thaiopensource.util;

public class Equal {
  private Equal() { }

  static public boolean equal(Object obj1, Object obj2) {
    return obj1 == null ? obj2 == null : obj1.equals(obj2);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy