Upgrade to Java 8 with Retrolambda

This commit is contained in:
vemacs
2016-10-13 11:57:30 -04:00
parent 862099b76b
commit 3add51629e
3 changed files with 57 additions and 42 deletions

View File

@@ -1,7 +1,7 @@
package org.drtshock;
public interface Tuber {
public boolean isDelicious();
boolean isDelicious();
public Tuber propagate();
Tuber propagate();
}