You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2012/03/27 11:41:03 UTC

[1/6] git commit: Make LongEncoder.DEFAULT a constant. If custom alphabet is needed then use org.apache.wicket.util.LongEncoder#encode(long, String custom)

Updated Branches:
  refs/heads/master 6348308e0 -> 696c212e0


Make LongEncoder.DEFAULT a constant.
If custom alphabet is needed then use org.apache.wicket.util.LongEncoder#encode(long, String custom)


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

Branch: refs/heads/master
Commit: 696c212e0ce1a5200c637d033bed8fd0c7875607
Parents: 936761e
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Tue Mar 27 11:39:38 2012 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Tue Mar 27 11:39:38 2012 +0200

----------------------------------------------------------------------
 .../java/org/apache/wicket/util/LongEncoder.java   |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/696c212e/wicket-util/src/main/java/org/apache/wicket/util/LongEncoder.java
----------------------------------------------------------------------
diff --git a/wicket-util/src/main/java/org/apache/wicket/util/LongEncoder.java b/wicket-util/src/main/java/org/apache/wicket/util/LongEncoder.java
index 8270a3a..2a890a5 100644
--- a/wicket-util/src/main/java/org/apache/wicket/util/LongEncoder.java
+++ b/wicket-util/src/main/java/org/apache/wicket/util/LongEncoder.java
@@ -34,7 +34,7 @@ public class LongEncoder
 	 * default alphabet that should be safe to use in most circumstances, while still providing good
 	 * shortening of long values
 	 */
-	public static String DEFAULT = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
+	public static final String DEFAULT = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
 
 	private LongEncoder()
 	{