All the latest and ... well, the latest anyway.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3950 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-03-15 03:28:02 +00:00
parent 4fe0d6e484
commit ed1be4a0f2
18 changed files with 551 additions and 350 deletions
+3 -10
View File
@@ -19,7 +19,7 @@
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
package com.threerings.util;
package com.threerings.util {
/**
* A message bundle provides an easy mechanism by which to obtain
@@ -54,14 +54,6 @@ public class MessageBundle
return getResourceString(key, false) != null;
}
/**
* Get a String from the resource bundle, or null if there was an error.
*/
protected function getResourceString (key :String) :String
{
return getResourceString(key, true);
}
/**
* Get a String from the resource bundle, or null if there was an
* error.
@@ -71,7 +63,7 @@ public class MessageBundle
* if the resource didn't exist.
*/
protected function getResourceString (
key :String, reportMissing :Boolean) :String
key :String, reportMissing :Boolean = true) :String
{
// TODO!!!
// try {
@@ -391,3 +383,4 @@ public class MessageBundle
protected static const QUAL_PREFIX :String = "%";
protected static const QUAL_SEP :String = ":";
}
}