Subversion Repository Public Repository

litesoft

Diff Revisions 942 vs 943 for /trunk/Java/core/Anywhere/src/org/litesoft/commonfoundation/base/DeCamelizer.java

Diff revisions: vs.
  @@ -3,7 +3,7 @@
3 3
4 4 /**
5 5 * Takes a 'CamelCased' string and produces a space separated string.
6 - *
6 + * <p/>
7 7 * Leading and trailing spaces are removed.
8 8 * First Character is upper cased.
9 9 * More than one Upper case letter in a row are considered an abbreviation (and spaces are not injected before the non-1st upper case letter).
  @@ -83,5 +83,4 @@
83 83 }
84 84 return sb.toString();
85 85 }
86 -
87 86 }