Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump org.json:json from 20230618 to 20231013 #2

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20230618</version>
<version>20231013</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
Expand Down Expand Up @@ -220,7 +220,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>10.12.1</version>
<version>10.12.2</version>
</dependency>
</dependencies>
<executions>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,14 +124,14 @@ private Messages.FileDiff implementInExistingClass(ProtocolStringList stubs, Fil
return null;
}

private static class MethodVisitor extends VoidVisitorAdapter {
private static final class MethodVisitor extends VoidVisitorAdapter {
@Override
public void visit(MethodDeclaration methodDeclaration, Object arg) {
methodDeclarations.add(methodDeclaration);
}
}

private static class ClassVisitor extends VoidVisitorAdapter {
private static final class ClassVisitor extends VoidVisitorAdapter {
@Override
public void visit(ClassOrInterfaceDeclaration node, Object arg) {
classRange = node.getRange().get();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/thoughtworks/gauge/tag/TagMatcher.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public boolean isMatch(List<String> tags, Operator operator, List<String> allTag
return new TagMatcherFactory().matcherFor(operator).isMatch(tags, allTags);
}

private class TagMatcherFactory {
private static final class TagMatcherFactory {
public SimpleTagMatcher matcherFor(Operator operator) {
switch (operator) {
case OR:
Expand Down
Loading