Fix coding issues

This commit is contained in:
AsamK 2015-08-07 13:22:15 +02:00
parent e1b584ab84
commit 9e1cd7e398
9 changed files with 19 additions and 23 deletions

View file

@ -12,7 +12,7 @@ import java.util.LinkedList;
import java.util.List;
import java.util.Map;
public class JsonSignedPreKeyStore implements SignedPreKeyStore {
class JsonSignedPreKeyStore implements SignedPreKeyStore {
private final Map<Integer, byte[]> store = new HashMap<>();
@ -20,7 +20,7 @@ public class JsonSignedPreKeyStore implements SignedPreKeyStore {
}
public JsonSignedPreKeyStore(JSONArray list) throws IOException {
public JsonSignedPreKeyStore(JSONArray list) {
for (int i = 0; i < list.length(); i++) {
JSONObject k = list.getJSONObject(i);
try {