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.github.spotbugs:spotbugs-maven-plugin from 4.7.3.6 to 4.8.1.0 #127

Merged
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
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<gpg.plugin.version>3.1.0</gpg.plugin.version>
<staging.plugin.version>1.6.13</staging.plugin.version>
<checkstyle.plugin.version>3.3.1</checkstyle.plugin.version>
<spotbugs.plugin.version>4.7.3.6</spotbugs.plugin.version>
<spotbugs.plugin.version>4.8.1.0</spotbugs.plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion src/main/software/amazon/event/ruler/Event.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
// TODO: Improve unit-test coverage, there are surprising gaps
@Immutable
@ThreadSafe
class Event {
final class Event {

private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
private static final JsonFactory JSON_FACTORY = new JsonFactory();
Expand Down
2 changes: 1 addition & 1 deletion src/main/software/amazon/event/ruler/IntIntMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* A fast primitive int-int map implementation. Keys and values may only be positive.
*/
class IntIntMap implements Cloneable {
final class IntIntMap implements Cloneable {

// taken from FastUtil
private static final int INT_PHI = 0x9E3779B9;
Expand Down
2 changes: 1 addition & 1 deletion src/main/software/amazon/event/ruler/Range.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* "Numeric" means that the character repertoire is "digits"; initially, either 0-9 or 0-9a-f. In the current
* implementation, the number of digits in the top and bottom of the range is the same.
*/
public class Range extends Patterns {
public final class Range extends Patterns {
/**
* Bottom and top of the range. openBottom true means we're looking for > bottom, false means >=
* Similarly, openTop true means we're looking for < top, false means <= top.
Expand Down
2 changes: 1 addition & 1 deletion src/main/software/amazon/event/ruler/input/MultiByte.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* A grouping of multiple bytes. This can be used to represent a character that has a UTF-8 representation requiring
* multiple bytes.
*/
public class MultiByte {
public final class MultiByte {

public static final byte MIN_FIRST_BYTE_FOR_ONE_BYTE_CHAR = (byte) 0x00;
public static final byte MAX_FIRST_BYTE_FOR_ONE_BYTE_CHAR = (byte) 0x7F;
Expand Down