Repository: wicket
Updated Branches:
  refs/heads/wicket-7.x 117e411e6 -> 028dac03c


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/028dac03
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/028dac03
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/028dac03

Branch: refs/heads/wicket-7.x
Commit: 028dac03c9c23502c6b09ed0a2cf05a4dc165539
Parents: 117e411
Author: Martin Tzvetanov Grigorov <mgrigo...@apache.org>
Authored: Sun Oct 18 12:08:15 2015 +0200
Committer: Martin Tzvetanov Grigorov <mgrigo...@apache.org>
Committed: Sun Oct 18 12:08:49 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/028dac03/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);

Reply via email to