Skip to content

Commit

Permalink
fix method name and bump toolkit version
Browse files Browse the repository at this point in the history
  • Loading branch information
nahsra committed Dec 12, 2024
1 parent 0480940 commit 609f351
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ static DependencyGAV createDefault(
group, artifact, version, justification, license, repositoryUrl, noTransitiveDependencies);
}

String JAVA_SECURITY_TOOLKIT_VERSION = "1.2.0";
String JAVA_SECURITY_TOOLKIT_VERSION = "1.2.1";
String JAVA_SECURITY_TOOLKIT_GAV =
"io.github.pixee:java-security-toolkit:" + JAVA_SECURITY_TOOLKIT_VERSION;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,6 @@ private static Optional<Expression> findExpressionToWrap(final Expression argume
}

private static void wrapWithNewlineSanitizer(final Expression expression) {
wrap(expression).withStaticMethod(Newlines.class.getName(), "stripNewLines", true);
wrap(expression).withStaticMethod(Newlines.class.getName(), "stripAll", true);
}
}
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ auto-value = "1.9"
jackson = "2.13.1"
javaparser-core = "3.26.2"
javaparser-symbolsolver = "3.15.15"
java-security-toolkit = "1.2.0"
java-security-toolkit = "1.2.1"
java-security-toolkit-xstream = "1.0.2"
javax-inject = "1"
jtokkit = "1.1.0"
Expand Down

0 comments on commit 609f351

Please sign in to comment.