You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
ad271e2bb0
git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@14181 d073be05-634f-4543-b044-5fe20cf6d1d6
29 lines
649 B
Plaintext
29 lines
649 B
Plaintext
diff -ur src/ccl/util/Util.java src/ccl/util/Util.java
|
|
--- src/ccl/util/Util.java 2003-11-23 10:18:26.000000000 -0600
|
|
+++ src/ccl/util/Util.java 2005-08-31 10:32:53.000000000 -0500
|
|
@@ -289,20 +289,24 @@
|
|
*
|
|
* @deprecated use 'assert' keyword from jdk 1.4 or above.
|
|
*/
|
|
+/*
|
|
public static void assert( boolean bAssert_ )
|
|
{
|
|
panicIf( !bAssert_ );
|
|
}
|
|
+*/
|
|
|
|
/**
|
|
* Assert pObject is not null.
|
|
*
|
|
* @deprecated use 'assert' keyword from jdk 1.4 or above.
|
|
*/
|
|
+/*
|
|
public static void assert( Object pObject_ )
|
|
{
|
|
panicIf( pObject_ == null );
|
|
}
|
|
+*/
|
|
|
|
|
|
/**
|