Skip to content

Commit

Permalink
changed encodeRawKeyToStr in SQLCipherOpenHelper to use new String in…
Browse files Browse the repository at this point in the history
…stead of toString
  • Loading branch information
vanevery committed Jun 4, 2014
1 parent dc23b9e commit 727c05b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public static char[] encodeRawKey(byte[] raw_key) {
* @see encodeRawKey
*/
public static String encodeRawKeyToStr(byte[] raw_key) {
return encodeRawKey(raw_key).toString();
return new String(encodeRawKey(raw_key));
}

/*
Expand Down

0 comments on commit 727c05b

Please sign in to comment.