added code to auto-join new users to a new community, where necessary
This commit is contained in:
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user