Skip to content

Commit

Permalink
update to 3.3.0, closes #39
Browse files Browse the repository at this point in the history
  • Loading branch information
Jsinco committed Sep 19, 2024
1 parent 8f4c3f8 commit c0b4b21
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/main/java/com/dre/brewery/utility/StringParser.java
Original file line number Diff line number Diff line change
@@ -1,14 +1,7 @@
package com.dre.brewery.utility;

import java.util.Map;

public class StringParser {

public static Map.Entry<Integer, String> parseQualityMapEntry(String line, ParseType type) {
Tuple<Integer, String> parsedQuality = parseQuality(line, type);
return Map.entry(parsedQuality.first(), parsedQuality.second());
}

public static Tuple<Integer, String> parseQuality(String line, ParseType type) {
//line = BreweryPlugin.getInstance().color(line);
int plus = 0;
Expand Down

0 comments on commit c0b4b21

Please sign in to comment.