Skip to content

Commit f1e57cc

Browse files
author
lexi
committed
Fixed a small bug.
1 parent 61de524 commit f1e57cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

basics/trunk/tools/src/main/java/org/jvnet/jaxb2_commons/xjc/model/concrete/XJCCMInfoFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ private String getLocalName(final String fullName) {
275275
}
276276
final int lastIndexOfDot = fullName.lastIndexOf('.');
277277
if (lastIndexOfDot != -1) {
278-
return fullName.substring(lastIndexOfDollar + 1);
278+
return fullName.substring(lastIndexOfDot + 1);
279279
}
280280
return fullName;
281281
}

0 commit comments

Comments
 (0)