WICKET-5997 Compatibility problem with Websphere liberty profile Fix a typo in warning message
Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/6c30740c Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/6c30740c Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/6c30740c Branch: refs/heads/lambdas Commit: 6c30740cdaf9da91d26361a8232a3aa91e03b81a Parents: 8ed4f8e Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Sun Oct 18 12:08:15 2015 +0200 Committer: Martin Tzvetanov Grigorov <[email protected]> Committed: Sun Oct 18 12:08:15 2015 +0200 ---------------------------------------------------------------------- wicket-core/src/main/java/org/apache/wicket/Application.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/6c30740c/wicket-core/src/main/java/org/apache/wicket/Application.java ---------------------------------------------------------------------- diff --git a/wicket-core/src/main/java/org/apache/wicket/Application.java b/wicket-core/src/main/java/org/apache/wicket/Application.java index 55035aa..db413a6 100644 --- a/wicket-core/src/main/java/org/apache/wicket/Application.java +++ b/wicket-core/src/main/java/org/apache/wicket/Application.java @@ -522,7 +522,7 @@ public abstract class Application implements UnboundListener, IEventSink log.warn("Found '{}' in '{}'. /META-INF/wicket/*.properties doesn't work in OSGi " + "and single-jar environments and is not supported anymore! " + "Please see https://issues.apache.org/jira/browse/WICKET-5997 for more details " + - "and report a issue for the library that still uses it.", + "and report an issue for the library that still uses it.", entryName, metaInfWicket); Properties properties = new Properties(); properties.load(jarEntryStream); @@ -552,7 +552,7 @@ public abstract class Application implements UnboundListener, IEventSink log.warn("Found '{}' in '{}'. /META-INF/wicket/*.properties doesn't work in OSGi " + "and single-jar environments and is not supported anymore! " + "Please see https://issues.apache.org/jira/browse/WICKET-5997 for more " + - "details and report a issue for the library that still uses it.", + "details and report an issue for the library that still uses it.", jarEntryName, metaInfWicket); Properties properties = new Properties(); properties.load(new ByteArrayInputStream(buf)); @@ -586,7 +586,7 @@ public abstract class Application implements UnboundListener, IEventSink log.warn("Found '{}'. /META-INF/wicket/*.properties doesn't work in OSGi " + "and single-jar environments and is not supported anymore! " + "Please see https://issues.apache.org/jira/browse/WICKET-5997 for more " + - "details and report a issue for the library that still uses it.", + "details and report an issue for the library that still uses it.", wicketPropertiesFile); Properties properties = new Properties(); properties.load(stream);
