diff options
author | Christine Chen <christinech@google.com> | 2013-09-18 11:26:33 -0700 |
---|---|---|
committer | Christine Chen <christinech@google.com> | 2013-09-18 11:26:33 -0700 |
commit | 0d4591e41a2a172381aeddc73d20a812db13a4ac (patch) | |
tree | f56f8ac7087ed3ccf793df8bd24ec14a8dc7c518 | |
parent | 1a495815c3c3fb3ca4fad29feb7ffb5000c1b264 (diff) |
Moves some TODO(klp) to TODO
Bug: 10605909
Change-Id: I6c961494f5470e6e96dd50ccec49bbc8c5862285
-rw-r--r-- | InCallUI/src/com/android/incallui/CallList.java | 2 | ||||
-rw-r--r-- | InCallUI/src/com/android/incallui/InCallPresenter.java | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/InCallUI/src/com/android/incallui/CallList.java b/InCallUI/src/com/android/incallui/CallList.java index 1b7e10d85..8249fd481 100644 --- a/InCallUI/src/com/android/incallui/CallList.java +++ b/InCallUI/src/com/android/incallui/CallList.java @@ -262,7 +262,7 @@ public class CallList { /** * Returns the [position]th call found in the call map with the specified state. - * TODO(klp): Improve this logic to sort by call time. + * TODO: Improve this logic to sort by call time. */ public Call getCallWithState(int state, int positionToFind) { Call retval = null; diff --git a/InCallUI/src/com/android/incallui/InCallPresenter.java b/InCallUI/src/com/android/incallui/InCallPresenter.java index bfff83fe5..9267d1085 100644 --- a/InCallUI/src/com/android/incallui/InCallPresenter.java +++ b/InCallUI/src/com/android/incallui/InCallPresenter.java @@ -35,7 +35,7 @@ import java.util.Set; * are disconnected. * Creates and manages the in-call state and provides a listener pattern for the presenters * that want to listen in on the in-call state changes. - * TODO(klp): This class has become more of a state machine at this point. Consider renaming. + * TODO: This class has become more of a state machine at this point. Consider renaming. */ public class InCallPresenter implements CallList.Listener { @@ -343,7 +343,7 @@ public class InCallPresenter implements CallList.Listener { private InCallState startOrFinishUi(InCallState newState) { Log.d(this, "startOrFinishUi: " + mInCallState + " -> " + newState); - // TODO(klp): Consider a proper state machine implementation + // TODO: Consider a proper state machine implementation // If the state isn't changing, we have already done any starting/stopping of // activities in a previous pass...so lets cut out early @@ -514,7 +514,7 @@ public class InCallPresenter implements CallList.Listener { * Interface implemented by classes that need to know about the InCall State. */ public interface InCallStateListener { - // TODO(klp): Enhance state to contain the call objects instead of passing CallList + // TODO: Enhance state to contain the call objects instead of passing CallList public void onStateChange(InCallState state, CallList callList); } |