Remove "public" from Part interface methods.
This commit is contained in:
parent
1eb830b71d
commit
bfcb25e1a2
@ -3,12 +3,12 @@ package com.codigoparallevar.minicards.parts;
|
||||
import android.graphics.Canvas;
|
||||
|
||||
public interface Part {
|
||||
public int getLeft();
|
||||
public int getRight();
|
||||
public int getTop();
|
||||
public int getBottom();
|
||||
int getLeft();
|
||||
int getRight();
|
||||
int getTop();
|
||||
int getBottom();
|
||||
|
||||
public void draw(Canvas canvas);
|
||||
void draw(Canvas canvas);
|
||||
|
||||
void move(int x, int y);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user