Skip to content

Commit

Permalink
Strip the public from ListenerCallQueue.Event in open source. It's no…
Browse files Browse the repository at this point in the history
…t actually visible, anyway.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=172361815
  • Loading branch information
lowasser authored and cpovirk committed Oct 16, 2017
1 parent 957c1a5 commit da90c77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ final class ListenerCallQueue<L> {
Collections.synchronizedList(new ArrayList<PerListenerQueue<L>>());

/** Method reference-compatible listener event. */
public interface Event<L> {
interface Event<L> {
/** Call a method on the listener. */
void call(L listener);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ final class ListenerCallQueue<L> {
Collections.synchronizedList(new ArrayList<PerListenerQueue<L>>());

/** Method reference-compatible listener event. */
public interface Event<L> {
interface Event<L> {
/** Call a method on the listener. */
void call(L listener);
}
Expand Down

0 comments on commit da90c77

Please sign in to comment.