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 com.puppycrawl.tools:checkstyle from 10.12.1 to 10.12.2 in /ddk-parent #797

Merged
Show file tree
Hide file tree
Changes from 4 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
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ public void unregister() {
/**
* A log listeners listening for logged {@link IStatus}.
*/
private class LogListener implements ILogListener {
private final class LogListener implements ILogListener {
/** The list holding the logged status. */
private final List<IStatus> loggedStatus = new ArrayList<IStatus>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ private boolean widgetNotFoundExceptionToBoolean(final Supplier<? extends Abstra
}

/** Helper that doesn't wait for widgets to appear as long as the default settings. */
private static class ImpatientSwtWorkbenchBot extends SWTWorkbenchBot {
private static final class ImpatientSwtWorkbenchBot extends SWTWorkbenchBot {
static final long MAX_RETRIES = 4; // Actual number of retries will almost certainly be at least 1 fewer than this.
static final long SHORT_TIME_OUT = 64;
static final long SHORT_INTERVAL = SHORT_TIME_OUT / MAX_RETRIES;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import java.util.concurrent.TimeUnit;

import org.apache.logging.log4j.Logger;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.LogManager;
import org.eclipse.emf.ecore.resource.Resource;

import com.avaloq.tools.ddk.xtext.naming.QualifiedNameLookup;
Expand Down Expand Up @@ -257,7 +257,7 @@ public void run() {
/**
* {@link CacheStatistics} representing the statistics coming from multiple caches.
*/
private class MultiCacheStatistics extends CacheStatistics {
private final class MultiCacheStatistics extends CacheStatistics {
private int counter;

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ private List<INode> getRemainingHiddenNodesInContainer(final INode from, final I
/**
* Auxiliary leaf node subtype used to indicate that a new line must be inserted at some point.
*/
private static class LeadingCommentsMarkerNode extends LeafNode {
private static final class LeadingCommentsMarkerNode extends LeafNode {
@Override
public String getText() {
return NEW_LINE;
Expand Down
2 changes: 1 addition & 1 deletion ddk-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

<!-- maven plugin versions -->
<checkstyle.plugin.version>3.3.0</checkstyle.plugin.version>
<checkstyle.version>10.12.1</checkstyle.version>
<checkstyle.version>10.12.2</checkstyle.version>
<clean.version>3.2.0</clean.version>
<deploy.version>3.1.1</deploy.version>
<spotbugs.plugin.version>4.7.3.5</spotbugs.plugin.version>
Expand Down
Loading