Skip to content

Commit

Permalink
Release 2.19.4. Console spam bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Brikster committed Jul 17, 2021
1 parent 0b2dd1e commit 2d2faad
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>chatty</artifactId>
<groupId>ru.mrbrikster</groupId>
<version>2.19.3</version>
<version>2.19.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,7 @@ public Field resolveField(Class<?> clazz, String... names) {
for (String name : names) {
try {
return clazz.getField(name);
} catch (NoSuchFieldException e) {
e.printStackTrace();
}
} catch (NoSuchFieldException ignored) {}
}

throw new IllegalStateException();
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>ru.mrbrikster</groupId>
<artifactId>chatty</artifactId>
<version>2.19.3</version>
<version>2.19.4</version>
<packaging>pom</packaging>

<modules>
Expand Down
2 changes: 1 addition & 1 deletion spigot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>chatty</artifactId>
<groupId>ru.mrbrikster</groupId>
<version>2.19.3</version>
<version>2.19.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit 2d2faad

Please sign in to comment.