Author: sebb Date: Wed Dec 9 10:40:28 2015 New Revision: 1718804 URL: http://svn.apache.org/viewvc?rev=1718804&view=rev Log: Line length
Modified: commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/introspection/JexlSandbox.java Modified: commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/introspection/JexlSandbox.java URL: http://svn.apache.org/viewvc/commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/introspection/JexlSandbox.java?rev=1718804&r1=1718803&r2=1718804&view=diff ============================================================================== --- commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/introspection/JexlSandbox.java (original) +++ commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/introspection/JexlSandbox.java Wed Dec 9 10:40:28 2015 @@ -29,14 +29,16 @@ import java.util.Set; * <p>A <b>whitelist</b> explicitly allows methods/properties for a class;</p> * * <ul> - * <li>If a whitelist is empty and thus does not contain any names, all properties/methods are allowed for its class.</li> + * <li>If a whitelist is empty and thus does not contain any names, + * all properties/methods are allowed for its class.</li> * <li>If it is not empty, the only allowed properties/methods are the ones contained.</li> * </ul> * * <p>A <b>blacklist</b> explicitly forbids methods/properties for a class;</p> * * <ul> - * <li>If a blacklist is empty and thus does not contain any names, all properties/methods are forbidden for its class.</li> + * <li>If a blacklist is empty and thus does not contain any names, + * all properties/methods are forbidden for its class.</li> * <li>If it is not empty, the only forbidden properties/methods are the ones contained.</li> * </ul> *