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
30 lines
852 B
Plaintext
30 lines
852 B
Plaintext
--- src/ccl/util/Test.java.orig 2003-11-23 10:18:26.000000000 -0600
|
|
+++ src/ccl/util/Test.java 2005-08-31 11:01:20.000000000 -0500
|
|
@@ -625,10 +625,12 @@
|
|
* @deprecated use 'Assert' instead since as of jdk release 1.4
|
|
* 'assert' is a keyword.
|
|
*/
|
|
+/*
|
|
public void assert( boolean bCheck_ )
|
|
{
|
|
bugIf( bCheck_ == false, "Assert test failed!" );
|
|
}
|
|
+*/
|
|
|
|
/**
|
|
* Conducts a check that a given object fullfills a
|
|
@@ -642,11 +644,13 @@
|
|
* @deprecated use 'Assert' instead since as of jdk release 1.4
|
|
* 'assert' is a keyword.
|
|
*/
|
|
+/*
|
|
public void assert( boolean bCheck_
|
|
, String sMessage_ )
|
|
{
|
|
bugIf( bCheck_ == false, sMessage_ );
|
|
}
|
|
+*/
|
|
|
|
/**
|
|
* Conducts a check that a given object fullfills a
|