From 33e29b73cf2f4a3db771bbd74619ea8af84555cf Mon Sep 17 00:00:00 2001 From: tcofoegbu Date: Fri, 4 Nov 2016 15:40:49 +0000 Subject: [PATCH] JAL-2292 added javadoc for compareChar(..) utility method --- src/jalview/util/Comparison.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/jalview/util/Comparison.java b/src/jalview/util/Comparison.java index a8ad086..5269d4f 100644 --- a/src/jalview/util/Comparison.java +++ b/src/jalview/util/Comparison.java @@ -416,6 +416,18 @@ public class Comparison return isNucleotide(oneDArray); } + /** + * Compares two chars either case sensitively or case insensitively depending + * on the caseSensitive flag + * + * @param c1 + * first char + * @param c2 + * second char to compare with + * @param caseSensitive + * if true comparison will be case sensitive otherwise its not + * @return + */ public static boolean compareChars(char c1, char c2, boolean caseSensitive) { boolean sameCase = (Character.isUpperCase(c1) && Character -- 1.7.10.2