blank() -> isBlank().

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3749 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2005-11-09 04:00:16 +00:00
parent 365634146c
commit 596d2a4708
26 changed files with 51 additions and 51 deletions
@@ -101,14 +101,14 @@ public abstract class TileSetRuleSet
boolean valid = true;
// check for the 'name' attribute
if (StringUtil.blank(set.getName())) {
if (StringUtil.isBlank(set.getName())) {
Log.warning("Tile set definition missing 'name' attribute " +
"[set=" + set + "].");
valid = false;
}
// check for an <imagePath> element
if (StringUtil.blank(set.getImagePath())) {
if (StringUtil.isBlank(set.getImagePath())) {
Log.warning("Tile set definition missing <imagePath> element " +
"[set=" + set + "].");
valid = false;