Skip to content

Commit

Permalink
remove unneeded temporary code
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Graff committed Dec 13, 2017
1 parent f65f2b8 commit 3f4fde2
Showing 1 changed file with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,4 @@ public class AtlasResults {
@Getter
private TimeseriesData data;

public List<String> keysFromLabel() {
Pattern pattern = Pattern.compile("\\(([a-z0-9\\.]+)=[^\\)]+\\)");
ArrayList<String> ret = new ArrayList<>();
Matcher matcher = pattern.matcher(label);
while (matcher.find()) {
ret.add(matcher.group(1));
}

return ret;
}

}

0 comments on commit 3f4fde2

Please sign in to comment.