2 Copyright (C) 2001, 2006 United States Government
3 as represented by the Administrator of the
4 National Aeronautics and Space Administration.
7 // @version $Id: StringUtil.java 1751 2007-05-06 21:21:44Z tgaskins $
9 package gov
.nasa
.worldwind
;
11 public class StringUtil
13 public static final String EMPTY
= "";
15 public static boolean Equals(String s1
, String s2
)
17 if(null == s1
&& null == s2
)
19 if(null == s1
|| null == s2
)