You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by sv...@apache.org on 2012/05/08 23:25:34 UTC

git commit: WICKET-4530 removed final from getters, allowing custom iteration

Updated Branches:
  refs/heads/wicket-1.5.x 56222749b -> 2f8ef0276


WICKET-4530 removed final from getters, allowing custom iteration


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/2f8ef027
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/2f8ef027
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/2f8ef027

Branch: refs/heads/wicket-1.5.x
Commit: 2f8ef02761d710c23ebda1a0cc34cdae61a81df1
Parents: 5622274
Author: Sven Meier <sv...@apache.org>
Authored: Tue May 8 23:25:01 2012 +0200
Committer: Sven Meier <sv...@apache.org>
Committed: Tue May 8 23:25:01 2012 +0200

----------------------------------------------------------------------
 .../resource/locator/ResourceNameIterator.java     |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/2f8ef027/wicket-core/src/main/java/org/apache/wicket/util/resource/locator/ResourceNameIterator.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/util/resource/locator/ResourceNameIterator.java b/wicket-core/src/main/java/org/apache/wicket/util/resource/locator/ResourceNameIterator.java
index 08a7c13..e12b40a 100644
--- a/wicket-core/src/main/java/org/apache/wicket/util/resource/locator/ResourceNameIterator.java
+++ b/wicket-core/src/main/java/org/apache/wicket/util/resource/locator/ResourceNameIterator.java
@@ -109,7 +109,7 @@ public class ResourceNameIterator implements Iterator<String>
 	 * 
 	 * @return current Locale
 	 */
-	public final Locale getLocale()
+	public Locale getLocale()
 	{
 		return localeIterator.getLocale();
 	}
@@ -119,7 +119,7 @@ public class ResourceNameIterator implements Iterator<String>
 	 * 
 	 * @return current Style
 	 */
-	public final String getStyle()
+	public String getStyle()
 	{
 		return styleIterator.getStyle();
 	}
@@ -129,7 +129,7 @@ public class ResourceNameIterator implements Iterator<String>
 	 * 
 	 * @return current Variation
 	 */
-	public final String getVariation()
+	public String getVariation()
 	{
 		return styleIterator.getVariation();
 	}
@@ -139,7 +139,7 @@ public class ResourceNameIterator implements Iterator<String>
 	 * 
 	 * @return current filename extension
 	 */
-	public final String getExtension()
+	public String getExtension()
 	{
 		return extensionsIterator.getExtension();
 	}