aboutsummaryrefslogtreecommitdiffstats
path: root/main/src
diff options
context:
space:
mode:
authorMichael Keppler <michael.keppler@etas.com>2015-01-02 23:48:49 +0100
committerMichael Keppler <michael.keppler@etas.com>2015-01-02 23:48:49 +0100
commitdf20ab6f27ef4479855e439f17e010e4b9616901 (patch)
treeaaa63020003141da5af67b7cd354d2d1321eb3df /main/src
parentb71f47b925e15493c239a42fdaae4b681c893c30 (diff)
downloadcgeo-df20ab6f27ef4479855e439f17e010e4b9616901.zip
cgeo-df20ab6f27ef4479855e439f17e010e4b9616901.tar.gz
cgeo-df20ab6f27ef4479855e439f17e010e4b9616901.tar.bz2
constants defined without static
Diffstat (limited to 'main/src')
-rw-r--r--main/src/cgeo/geocaching/utils/CryptUtils.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/utils/CryptUtils.java b/main/src/cgeo/geocaching/utils/CryptUtils.java
index f2ff0c2..70d5895 100644
--- a/main/src/cgeo/geocaching/utils/CryptUtils.java
+++ b/main/src/cgeo/geocaching/utils/CryptUtils.java
@@ -23,8 +23,8 @@ public final class CryptUtils {
}
private static final byte[] EMPTY = {};
- private static char[] BASE64MAP1 = new char[64];
- private static byte[] BASE64MAP2 = new byte[128];
+ private static final char[] BASE64MAP1 = new char[64];
+ private static final byte[] BASE64MAP2 = new byte[128];
static {
int i = 0;