From c3344aeffb1ea8a111424f2d83f1433701715a3f Mon Sep 17 00:00:00 2001 From: QuocDoBV <111261098+QuocDoBV@users.noreply.github.com> Date: Thu, 12 Dec 2024 16:49:46 +0700 Subject: [PATCH] change email to fix ECA --- org.eclipse.swtchart/src/org/eclipse/swtchart/IAxis.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/org.eclipse.swtchart/src/org/eclipse/swtchart/IAxis.java b/org.eclipse.swtchart/src/org/eclipse/swtchart/IAxis.java index 5210976b..3013f962 100644 --- a/org.eclipse.swtchart/src/org/eclipse/swtchart/IAxis.java +++ b/org.eclipse.swtchart/src/org/eclipse/swtchart/IAxis.java @@ -296,11 +296,11 @@ public enum Position { * manual range settings through the {@link #setRange(Range, boolean)} method. * * @param minRange - * the minimum value allowed for the axis range + * the minimum value allowed for the axis range. * @param maxRange - * the maximum value allowed for the axis range + * the maximum value allowed for the axis range. * @throws IllegalArgumentException - * if {@code minRange} is greater than or equal to {@code maxRange} + * if {@code minRange} is greater than or equal to {@code maxRange}. */ void setLimitRange(double minRange, double maxRange); }