Fix inspections

This commit is contained in:
AsamK 2018-11-20 23:27:36 +01:00
parent f60a10eb6e
commit 7e897fa6d0
13 changed files with 20 additions and 34 deletions

View file

@ -73,16 +73,14 @@ public class Manager implements Signal {
private final String dataPath;
private final String attachmentsPath;
private final String avatarsPath;
private final SleepTimer timer = new UptimeSleepTimer();
private SignalAccount account;
private String username;
private SignalServiceAccountManager accountManager;
private SignalServiceMessagePipe messagePipe = null;
private SignalServiceMessagePipe unidentifiedMessagePipe = null;
private SleepTimer timer = new UptimeSleepTimer();
public Manager(String username, String settingsPath) {
this.username = username;
this.settingsPath = settingsPath;

View file

@ -223,8 +223,8 @@ class Utils {
static class DeviceLinkInfo {
String deviceIdentifier;
ECPublicKey deviceKey;
final String deviceIdentifier;
final ECPublicKey deviceKey;
DeviceLinkInfo(final String deviceIdentifier, final ECPublicKey deviceKey) {
this.deviceIdentifier = deviceIdentifier;