Remove public from interface

http://docs.oracle.com/javase/specs/jls/se7/html/jls-9.html#jls-9.4
This commit is contained in:
Blinky™ 2016-10-13 11:42:17 -04:00 committed by GitHub
parent 862099b76b
commit 76a6333cdb

View file

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