Skip to content

Instantly share code, notes, and snippets.

@john77eipe
Created April 16, 2017 13:02
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save john77eipe/c77261fb9f10a0d96f10661011452b28 to your computer and use it in GitHub Desktop.
Save john77eipe/c77261fb9f10a0d96f10661011452b28 to your computer and use it in GitHub Desktop.
//before
Runnable r1 = new Runnable() {
@Override
public void run() {
System.out.println("My Runnable");
}
};
//now
Runnable r2 = () -> System.out.println("My Runnable");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment