added code to auto-join new users to a new community, where necessary

This commit is contained in:
Eric J. Bowersox
2003-06-02 12:05:44 +00:00
parent 31e0cbe4a0
commit d72db2985b
12 changed files with 461 additions and 8 deletions

View File

@@ -77,6 +77,18 @@ public class LibraryCast
} // end booleanObject
public final boolean isBooleanFalse(Object o)
{
return Boolean.FALSE.equals(o);
} // end isBooleanFalse
public final boolean isBooleanTrue(Object o)
{
return Boolean.TRUE.equals(o);
} // end isBooleanTrue
public final int[] newIntArray(int size)
{
return new int[size];