mirror of
https://github.com/AsamK/signal-cli
synced 2025-09-03 20:50:38 +00:00
Fix coding issues
This commit is contained in:
parent
e1b584ab84
commit
9e1cd7e398
9 changed files with 19 additions and 23 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue