Author: kkolinko Date: Fri Oct 17 15:03:44 2014 New Revision: 1632601 URL: http://svn.apache.org/r1632601 Log: Correct typo in message key, order alphabetically - followup to r1632310
Modified: tomcat/trunk/java/org/apache/jasper/compiler/Node.java tomcat/trunk/java/org/apache/jasper/resources/LocalStrings.properties Modified: tomcat/trunk/java/org/apache/jasper/compiler/Node.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/compiler/Node.java?rev=1632601&r1=1632600&r2=1632601&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/jasper/compiler/Node.java (original) +++ tomcat/trunk/java/org/apache/jasper/compiler/Node.java Fri Oct 17 15:03:44 2014 @@ -608,7 +608,7 @@ abstract class Node implements TagConsta // name with a wildcard if (importEntry.indexOf(';') > -1) { throw new IllegalArgumentException( - Localizer.getMessage("jsp.error.page.invaild.import")); + Localizer.getMessage("jsp.error.page.invalid.import")); } return importEntry.trim(); } Modified: tomcat/trunk/java/org/apache/jasper/resources/LocalStrings.properties URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/resources/LocalStrings.properties?rev=1632601&r1=1632600&r2=1632601&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/jasper/resources/LocalStrings.properties (original) +++ tomcat/trunk/java/org/apache/jasper/resources/LocalStrings.properties Fri Oct 17 15:03:44 2014 @@ -36,9 +36,9 @@ jsp.error.page.invalid.session=Page dire jsp.error.page.conflict.buffer=Page directive: illegal to have multiple occurrences of 'buffer' with different values (old: {0}, new: {1}) jsp.error.page.invalid.buffer=Page directive: invalid value for buffer jsp.error.page.conflict.autoflush=Page directive: illegal to have multiple occurrences of 'autoFlush' with different values (old: {0}, new: {1}) +jsp.error.page.invalid.import=Page directive: invalid value for import jsp.error.page.conflict.isthreadsafe=Page directive: illegal to have multiple occurrences of 'isThreadSafe' with different values (old: {0}, new: {1}) jsp.error.page.invalid.isthreadsafe=Page directive: invalid value for isThreadSafe -jsp.error.page.invaild.import=Page directive: invalid value for import jsp.error.page.conflict.info=Page directive: illegal to have multiple occurrences of 'info' with different values (old: {0}, new: {1}) jsp.error.page.invalid.info=Page directive: invalid value for info jsp.error.page.conflict.iserrorpage=Page directive: illegal to have multiple occurrences of 'isErrorPage' with different values (old: {0}, new: {1}) --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org