Merge pull request #91 from vemacs/retrolambda

Upgrade to Java 8 with Retrolambda
This commit is contained in:
Trent Hensler
2016-10-17 11:27:13 -07:00
committed by GitHub
3 changed files with 57 additions and 42 deletions

View File

@@ -11,7 +11,7 @@ import java.util.List;
*/
public class Potato implements Tuber {
private final List<Condiment> condiments = new ArrayList<Condiment>();
private final List<Condiment> condiments = new ArrayList<>();
public static void main(String[] args) {
final Potato potato = new Potato();