File tree Expand file tree Collapse file tree
androidplot-core/src/main/java/com/androidplot Expand file tree Collapse file tree Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff line change 2121 */
2222public interface InterpolationParams <InterpolatorType extends Interpolator > {
2323
24- public Class <InterpolatorType > getInterpolatorClass ();
24+ Class <InterpolatorType > getInterpolatorClass ();
2525}
Original file line number Diff line number Diff line change 1818
1919public interface PointLabeler {
2020
21- public String getLabel (XYSeries series , int index );
21+ String getLabel (XYSeries series , int index );
2222}
You can’t perform that action at this time.
0 commit comments