Skip to content

Commit

Permalink
#15359 removing unnecessary code
Browse files Browse the repository at this point in the history
  • Loading branch information
fabrizzio-dotCMS committed Nov 1, 2018
1 parent 202405a commit a5e00cb
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions dotCMS/src/main/java/com/dotmarketing/util/StringUtils.java
Expand Up @@ -281,17 +281,4 @@ public static StringBuilder builder (final Object... objects) {

return builder;
} // builder.

/**
* Null safe, case insensitive equals
* @param a
* @param b
* @return
*/
public static boolean equalsNullSafeIgnoreCase(final String a, final String b){

if( null == a && null == b ) return true;
return (a != null && a.trim().equalsIgnoreCase(b));
}

}

0 comments on commit a5e00cb

Please sign in to comment.