Skip to content

Commit 52a5158

Browse files
committed
Update some method names in accordance with the naming convention.
DEVSIX-2043
1 parent 40968cf commit 52a5158

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

svg/src/main/java/com/itextpdf/svg/renderers/impl/PathSvgNodeRenderer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ private static String[] concatenate(String[] first, String[] second) {
265265
}
266266

267267
boolean containsInvalidAttributes(String attributes) {
268-
return SvgRegexUtils.ContainsAtLeastOneMatch(invalidRegexPattern,attributes);
268+
return SvgRegexUtils.containsAtLeastOneMatch(invalidRegexPattern,attributes);
269269
}
270270

271271
private Collection<String> parsePropertiesAndStyles() {

svg/src/main/java/com/itextpdf/svg/utils/SvgRegexUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ This file is part of the iText (R) project.
4747

4848
public class SvgRegexUtils {
4949

50-
public static boolean ContainsAtLeastOneMatch(Pattern regexPattern, String stringToExamine){
50+
public static boolean containsAtLeastOneMatch(Pattern regexPattern, String stringToExamine){
5151
Matcher matcher = regexPattern.matcher(stringToExamine);
5252
return matcher.find();
5353
}

0 commit comments

Comments
 (0)