Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Fix findbugs warning
Browse files Browse the repository at this point in the history
  • Loading branch information
seanf committed Oct 2, 2013
1 parent 0a7fced commit e5ed4bf
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -22,6 +22,7 @@

import java.io.IOException;
import java.io.Reader;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.HashMap;
Expand Down Expand Up @@ -168,7 +169,7 @@ private Map<Integer, String> setupDescMap(List<String[]> entries) {
return sorted_map;
}

static class ValueComparator implements Comparator<Integer> {
static class ValueComparator implements Comparator<Integer>, Serializable {

Map<Integer, String> base;
public ValueComparator(Map<Integer, String> base) {
Expand Down

0 comments on commit e5ed4bf

Please sign in to comment.