Home | History | Annotate | Download | only in jcommander
      1 package com.beust.jcommander;
      2 
      3 public class Strings {
      4   public static boolean isStringEmpty(String s) {
      5     return s == null || "".equals(s);
      6   }
      7 }
      8