Worldwind public release 0.2
[worldwind-tracker.git] / gov / nasa / worldwind / StringUtil.java
blob10f50fe76abf406ebc28c35fe2d78b89ab64decc
1 /*
2 Copyright (C) 2001, 2006 United States Government
3 as represented by the Administrator of the
4 National Aeronautics and Space Administration.
5 All Rights Reserved.
6 */
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)
18 return true;
19 if(null == s1 || null == s2)
20 return false;
21 return s1.equals(s2);