Skip to content

Commit cb860fb

Browse files
committed
minor cleanup
1 parent 76f2be7 commit cb860fb

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

androidplot-core/src/main/java/com/androidplot/PlotListener.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public interface PlotListener {
3131
* @param source
3232
* @param canvas
3333
*/
34-
public void onBeforeDraw(Plot source, Canvas canvas);
34+
void onBeforeDraw(Plot source, Canvas canvas);
3535

3636
/**
3737
* Fired immediately after the Plot "source" is drawn onto canvas.
@@ -41,5 +41,5 @@ public interface PlotListener {
4141
* @param source
4242
* @param canvas
4343
*/
44-
public void onAfterDraw(Plot source, Canvas canvas);
44+
void onAfterDraw(Plot source, Canvas canvas);
4545
}

androidplot-core/src/main/java/com/androidplot/Series.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ public interface Series {
2525
*
2626
* @return The title of this Series.
2727
*/
28-
public String getTitle();
28+
String getTitle();
2929

3030
}

androidplot-core/src/main/java/com/androidplot/ui/Resizable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ public interface Resizable {
3434
* Resizables in likely undesired ways.
3535
* @param dims
3636
*/
37-
public void layout(final DisplayDimensions dims);
37+
void layout(final DisplayDimensions dims);
3838
}

androidplot-core/src/main/java/com/androidplot/xy/InterpolationParams.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
*/
2222
public interface InterpolationParams<InterpolatorType extends Interpolator> {
2323

24-
public Class<InterpolatorType> getInterpolatorClass();
24+
Class<InterpolatorType> getInterpolatorClass();
2525
}

androidplot-core/src/main/java/com/androidplot/xy/PointLabeler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818

1919
public interface PointLabeler {
2020

21-
public String getLabel(XYSeries series, int index);
21+
String getLabel(XYSeries series, int index);
2222
}

0 commit comments

Comments
 (0)