Skip to content

Commit e24ee73

Browse files
committed
Fixed leftover TODOs
1 parent e353a9f commit e24ee73

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

app/src/main/java/com/donnfelker/android/bootstrap/Injector.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
public final class Injector {
66

7-
public static ObjectGraph objectGraph = null; //TODO why is this public?
7+
private static ObjectGraph objectGraph = null;
88

99
public static void init(final Object rootModule) {
1010

app/src/main/java/com/donnfelker/android/bootstrap/authenticator/LogoutService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public Boolean call() throws Exception {
5454
return removeAccountFuture.getResult();
5555
}
5656
} else {
57-
//TODO what should be done here?
57+
Ln.w("accountManagerWithContext is null");
5858
}
5959

6060
return false;

app/src/main/java/com/donnfelker/android/bootstrap/core/CheckIn.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.donnfelker.android.bootstrap.core;
22

3-
public class CheckIn { //TODO implements Serializable?
3+
public class CheckIn {
44

55
private Location location;
66
private String name;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package com.donnfelker.android.bootstrap.core;
22

33
public class IntentFactory {
4-
//FIXME do we need this class?
4+
//TODO implement an Activity and Fragment delegate pattern
55
}

0 commit comments

Comments
 (0)