Throw exception for non-implemented drawGraph methods.
This commit is contained in:
parent
9e8457337e
commit
a2d03a0857
@ -403,12 +403,12 @@ public class MapViewDrawing extends MapView implements Drawing {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void drawGraph(Graph graph, GraphPalette palette) {
|
public void drawGraph(Graph graph, GraphPalette palette) {
|
||||||
// drawGraph(graph, null);
|
throw new RuntimeException("Not implemented, use drawGraph(File).");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void drawGraph(Graph graph) {
|
public void drawGraph(Graph graph) {
|
||||||
// drawGraph(graph, null);
|
throw new RuntimeException("Not implemented, use drawGraph(File).");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user