mirror of
https://github.com/aljazceru/signal-cli.git
synced 2025-12-26 02:24:21 +01:00
Fix coding issues
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user