Skip to content

Commit

Permalink
Disable printing of LanguagePack resource
Browse files Browse the repository at this point in the history
  • Loading branch information
xmamo committed Nov 30, 2018
1 parent 2918c6c commit e150d24
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>mamo</groupId>
<artifactId>VanillaVotifier</artifactId>
<version>4.1.1</version>
<version>4.1.2</version>
<dependencies>
<dependency>
<groupId>org.jetbrains</groupId>
Expand Down
1 change: 0 additions & 1 deletion src/main/java/mamo/vanillaVotifier/LanguagePack.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ public String getString(@NotNull String key, @Nullable Entry<String, Object>...
if (!resource.startsWith("/")) {
resource = "/" + languagePackPath + "/" + resource;
}
System.out.println(resource);
BufferedReader in = new BufferedReader(new InputStreamReader(LanguagePack.class.getResourceAsStream(resource)));
StringBuilder stringBuilder = new StringBuilder();
int i;
Expand Down

0 comments on commit e150d24

Please sign in to comment.