Exemplo n.º 1
0
 /**
  * Match two strings else throw a {@link RuntimeException}
  *
  * @param first
  * @param second
  */
 public static void match(String first, String second) {
   if (first.equals(second) == false) throw logger.notEqualError(first, second);
 }