From 5428da36475dffb3f5066e2955d5c27174d4e03e Mon Sep 17 00:00:00 2001 From: lkuehne Date: Sat, 6 Jul 2002 08:56:30 +0000 Subject: [PATCH] avoid double negation in description of illegal.instantiations --- docs/engine.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/engine.html b/docs/engine.html index e40160caa..600ebb503 100644 --- a/docs/engine.html +++ b/docs/engine.html @@ -419,7 +419,7 @@ line 5: /{71}

Instantiations

-

Checks for instantiation of classes that should not be constructed directly. The list of these classes is configurable, the default is that no instantiations are illegal.

+

Checks for instantiation of classes that should not be instantiated directly. The list of these classes is configurable, the default is that all instantiations are legal.

Tip

A common mistake is to create new instances of java.lang.Boolean instead of using the constants TRUE and FALSE or the Boolean.valueOf() factory methods. This increases the program's memory requirements and wastes CPU cycles during memory allocation and garbage collection.