Skip to content
Snippets Groups Projects
Commit aa9fc874 authored by Tim Molter's avatar Tim Molter
Browse files

changed visibility of methods

parent 2337b4dc
No related branches found
No related tags found
No related merge requests found
......@@ -66,8 +66,10 @@ public class Chart {
/**
* @param g
* @param width
* @param height
*/
protected void paint(Graphics2D g, int width, int height) {
public void paint(Graphics2D g, int width, int height) {
this.width = width;
this.height = height;
......@@ -78,7 +80,7 @@ public class Chart {
/**
* @param g
*/
protected void paint(Graphics2D g) {
public void paint(Graphics2D g) {
// Sanity check
if (axisPair.seriesMap.isEmpty()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment