summaryrefslogtreecommitdiff
path: root/java/com/android/newbubble
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/android/newbubble')
-rw-r--r--java/com/android/newbubble/NewBubble.java3
-rw-r--r--java/com/android/newbubble/stub/NewBubbleStub.java3
2 files changed, 0 insertions, 6 deletions
diff --git a/java/com/android/newbubble/NewBubble.java b/java/com/android/newbubble/NewBubble.java
index 8f1be6458..785593c5c 100644
--- a/java/com/android/newbubble/NewBubble.java
+++ b/java/com/android/newbubble/NewBubble.java
@@ -37,9 +37,6 @@ public interface NewBubble {
/** Hide the bubble. */
void hide();
- /** Hide the bubble and reset to initial state */
- void hideAndReset();
-
/** Returns whether the bubble is currently visible */
boolean isVisible();
diff --git a/java/com/android/newbubble/stub/NewBubbleStub.java b/java/com/android/newbubble/stub/NewBubbleStub.java
index 4079aaaba..f5121cff9 100644
--- a/java/com/android/newbubble/stub/NewBubbleStub.java
+++ b/java/com/android/newbubble/stub/NewBubbleStub.java
@@ -36,9 +36,6 @@ public class NewBubbleStub implements NewBubble {
public void hide() {}
@Override
- public void hideAndReset() {}
-
- @Override
public boolean isVisible() {
return false;
}