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
@@ -94,7 +94,7 @@ public class LobbyConfig extends PlaceConfig
throws Exception
{
String value = config.getProperty(key);
if (StringUtil.blank(value)) {
if (StringUtil.isBlank(value)) {
throw new Exception("Missing '" + key + "' definition in " +
"lobby configuration.");
}
@@ -1,5 +1,5 @@
//
// $Id: LobbyManager.java,v 1.8 2004/08/27 02:12:50 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -57,7 +57,7 @@ public class LobbyManager extends PlaceManager
throws Exception
{
String value = config.getProperty(key);
if (StringUtil.blank(value)) {
if (StringUtil.isBlank(value)) {
throw new Exception("Missing '" + key + "' definition in " +
"lobby configuration.");
}
@@ -135,7 +135,7 @@ public class LobbyRegistry
// get the lobby manager class and UGI
String cfgClass = props.getProperty("config");
if (StringUtil.blank(cfgClass)) {
if (StringUtil.isBlank(cfgClass)) {
throw new Exception("Missing 'config' definition in " +
"lobby configuration.");
}