mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

davidely
17.28.2007 d6ed8c17f84388757eb5bf3d0a60d9d93746f527
opendj-sdk/opends/src/server/org/opends/server/util/Validator.java
@@ -65,7 +65,7 @@
 * happens before the method is invoked cannot be eliminated, e.g.
 * <code>Validator.ensureTrue(someExpensiveCheck())</code> will always invoke
 * <code>someExpensiveCheck()</code>.  When this code is on the critical path,
 * and we do not expect the validation to failure, you can guard the call with
 * and we do not expect the validation to fail, you can guard the call with
 * an <code>assert</code> because each method returns true, and this code will
 * only be executed when asserts are enabled.
 * <p>