| Changed Methods | 
  
  
  String emptyToNull(String)  
   | 
  
Change in return type from String to java.lang.String. 
 Change in signature from String to java.lang.String. 
   | 
  Returns the given string if it is nonempty; {@code null} otherwise. | 
  
  
  boolean isNullOrEmpty(String)  
   | 
  
Change in signature from String to java.lang.String. 
   | 
  Returns {@code true} if the given string is null or is the empty string. | 
  
  
  String lenientFormat(String, Object[])  
   | 
  
Change in signature from (String, Object) to (String, Object[]). 
   | 
  Returns the given {@code template} string with each occurrence of {@code "%s"} replaced with
 the corresponding argument value from {@code args}; or, if the placeholder and argument counts
 do not match, returns a best-effort form of that string. | 
  
  
  String nullToEmpty(String)  
   | 
  
Change in signature from String to java.lang.String. 
   | 
  Returns the given string if it is non-null; the empty string otherwise. |