Removed unnecessary modifier from MEasurable interface

This commit is contained in:
Bokros Bálint 2016-05-14 13:11:48 +02:00
parent c4ed7807cb
commit bb6c46827f

View File

@ -1,5 +1,5 @@
package cicaprojekt;
public interface Measurable {
public int weight();
int weight();
}