summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2016-02-01 09:58:47 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2016-02-01 09:58:47 +0100
commit5305b6ff892ed32a3b14019bf1a751d2fffb3286 (patch)
tree48f6efb2fdce57406f5bb98e8db51f38dcdb8536
parenta96d53218420e9dd879bf65a2b963ea8d3126640 (diff)
downloadRustAndDust-5305b6ff892ed32a3b14019bf1a751d2fffb3286.zip
RustAndDust-5305b6ff892ed32a3b14019bf1a751d2fffb3286.tar.gz
DB: fix typo
-rw-r--r--core/src/ch/asynk/rustanddust/DB.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/ch/asynk/rustanddust/DB.java b/core/src/ch/asynk/rustanddust/DB.java
index e2218c9..8eb64ef 100644
--- a/core/src/ch/asynk/rustanddust/DB.java
+++ b/core/src/ch/asynk/rustanddust/DB.java
@@ -88,7 +88,7 @@ public class DB
String hash = null;
try {
hash = new BigInteger(1, md.digest(str.getBytes("UTF-8"))).toString(16);
- } catch (java.io.UnsupportedEncodingException e) { RustAndDast.error("getDigest"); }
+ } catch (java.io.UnsupportedEncodingException e) { RustAndDust.error("getDigest"); }
return hash;
}