282283284285286287288289290291292
return 1; } }); } else { chimeraGraph.addPlotter(new Metrics.Plotter("Disabled") { @Override public int getValue() { return 1; } });
294295296297298299300301302303304
// Vanilla v Modified config graph Graph customConfigGraph = metrics.createGraph("Modified Configs"); if (customConfig) { customConfigGraph.addPlotter(new Metrics.Plotter("Edited") { @Override public int getValue() { return 1; } });
302303304305306307308309310311312
return 1; } }); } else { customConfigGraph.addPlotter(new Metrics.Plotter("Vanilla") { @Override public int getValue() { return 1; } });