From 699e71e76b15081baf746c6ce9c9144f7e5f1ff9 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Mon, 30 Sep 2013 10:11:28 -0400 Subject: [PATCH] Trim trailing whitespace and organize imports --- src/main/java/com/gitblit/wicket/charting/SecureChartDataEncoding.java | 11 +++++++---- 1 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/gitblit/wicket/charting/SecureChartDataEncoding.java b/src/main/java/com/gitblit/wicket/charting/SecureChartDataEncoding.java index 90a0596..c5ac460 100644 --- a/src/main/java/com/gitblit/wicket/charting/SecureChartDataEncoding.java +++ b/src/main/java/com/gitblit/wicket/charting/SecureChartDataEncoding.java @@ -19,14 +19,15 @@ /** * This class is a pristine fork of org.wicketstuff.googlecharts.ChartDataEncoding * to bring the package-protected convert methods to SecureChart. - * + * * @author Daniel Spiewak */ public enum SecureChartDataEncoding { SIMPLE("s", "", ",") { - CharSequence convert(double value, double max) { + @Override + CharSequence convert(double value, double max) { if (value < 0) { return "_"; } @@ -42,7 +43,8 @@ }, TEXT("t", ",", "|") { - CharSequence convert(double value, double max) { + @Override + CharSequence convert(double value, double max) { if (value < 0) { value = -1; } @@ -56,7 +58,8 @@ }, EXTENDED("e", "", ",") { - CharSequence convert(double value, double max) { + @Override + CharSequence convert(double value, double max) { if (value < 0) { return "__"; } -- Gitblit v1.9.1