Very nice but please could you give example not using lambda expressions from Java 8 because I have to use jdk7…
Thanks
Simply replace the expression “() → { doSomething(); }” with “new Runnable() { public void run() { doSomething(); } }”. Thats all ;-).