Skip to content

Instantly share code, notes, and snippets.

@nalitzis
Last active December 20, 2015 07:09

Revisions

  1. nalitzis revised this gist Jul 26, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Sample.java
    Original file line number Diff line number Diff line change
    @@ -2,6 +2,6 @@ public interface SampleClass {
    void doAsync(Listener l);

    public interface Listener{
    onValueChanged(int i);
    void onValueChanged(int i);
    }
    }
  2. nalitzis created this gist Jul 26, 2013.
    7 changes: 7 additions & 0 deletions Sample.java
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    public interface SampleClass {
    void doAsync(Listener l);

    public interface Listener{
    onValueChanged(int i);
    }
    }