From d5ee5ede3eeeb230562d0f0148f5fdfa3a820b5a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Konrad=20K=C3=BCgler?= Date: Sun, 27 Apr 2014 21:46:59 +0200 Subject: [PATCH] AbstractPlotRenderer: Make private methods static where applicable MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: Iaf02502b02b2420c059f04bbe09254941301c727 Signed-off-by: Konrad Kügler --- .../src/org/eclipse/jgit/revplot/AbstractPlotRenderer.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/revplot/AbstractPlotRenderer.java b/org.eclipse.jgit/src/org/eclipse/jgit/revplot/AbstractPlotRenderer.java index f076ea0867..2ea65be58a 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/revplot/AbstractPlotRenderer.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/revplot/AbstractPlotRenderer.java @@ -170,7 +170,7 @@ public abstract class AbstractPlotRenderer { */ protected abstract int drawLabel(int x, int y, Ref ref); - private int computeDotSize(final int h) { + private static int computeDotSize(final int h) { int d = (int) (Math.min(h, LANE_WIDTH) * 0.50f); d += (d & 1); return d; @@ -262,12 +262,12 @@ public abstract class AbstractPlotRenderer { */ protected abstract void drawText(String msg, int x, int y); - private int laneX(final PlotLane myLane) { + private static int laneX(final PlotLane myLane) { final int p = myLane != null ? myLane.getPosition() : 0; return LEFT_PAD + LANE_WIDTH * p; } - private int laneC(final PlotLane myLane) { + private static int laneC(final PlotLane myLane) { return laneX(myLane) + LANE_WIDTH / 2; } } -- 2.39.5