Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2006-04-26 15:35:16 +0000
committerThomas Watson2006-04-26 15:35:16 +0000
commit66473647347d15b7603c4ebee85eb45d9ac65635 (patch)
tree4ee7d8246a592e17d45d2fbef83dbdad827af335
parent4dcd1839bde30619342389383fb182688f04c1ff (diff)
downloadrt.equinox.bundles-66473647347d15b7603c4ebee85eb45d9ac65635.tar.gz
rt.equinox.bundles-66473647347d15b7603c4ebee85eb45d9ac65635.tar.xz
rt.equinox.bundles-66473647347d15b7603c4ebee85eb45d9ac65635.zip
Bug 122759 [javadoc] Assert.isNotNull specs IllegalArgumentException but throws AssertionFailedException
-rw-r--r--bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/Assert.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/Assert.java b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/Assert.java
index 7f5acf116..29521b258 100644
--- a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/Assert.java
+++ b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/Assert.java
@@ -65,7 +65,6 @@ public final class Assert {
* is not the case, some kind of unchecked exception is thrown.
*
* @param object the value to test
- * @exception IllegalArgumentException if the object is <code>null</code>
*/
public static void isNotNull(Object object) {
isNotNull(object, ""); //$NON-NLS-1$
@@ -77,7 +76,6 @@ public final class Assert {
*
* @param object the value to test
* @param message the message to include in the exception
- * @exception IllegalArgumentException if the object is <code>null</code>
*/
public static void isNotNull(Object object, String message) {
if (object == null)

Back to the top