remove useless "new string"
This commit is contained in:
parent
2a7c191d84
commit
60bcf865d0
1 changed files with 1 additions and 1 deletions
|
@ -306,7 +306,7 @@ public class OlmAccount extends CommonSerializeUtils implements Serializable {
|
|||
|
||||
if( null != oneTimeKeysBuffer) {
|
||||
try {
|
||||
oneTimeKeysJsonObj = new JSONObject(new String(new String(oneTimeKeysBuffer, "UTF-8")));
|
||||
oneTimeKeysJsonObj = new JSONObject(new String(oneTimeKeysBuffer, "UTF-8"));
|
||||
//Log.d(LOG_TAG, "## oneTimeKeys(): OneTime Json keys=" + oneTimeKeysJsonObj.toString());
|
||||
} catch (Exception e) {
|
||||
Log.e(LOG_TAG, "## oneTimeKeys(): Exception - Msg=" + e.getMessage());
|
||||
|
|
Loading…
Reference in a new issue