Skip to content

Commit

Permalink
Unfiltered the data from older versions of CodingSpectator.
Browse files Browse the repository at this point in the history
This commit belongs to issue #312.
  • Loading branch information
reprogrammer committed Aug 18, 2011
1 parent 0db48c3 commit d350df1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ private static List<EFSFile> versionsUnderStudy(EFSFile parentFolder) throws Cor
boolean hasValidVersionNumber= Pattern.compile("\\d\\.\\d\\.\\d\\.\\d*").matcher(fileName).matches();

//FIXME: See issue #244.
boolean isNotTooOld= fileName.compareTo("1.0.0.201105300951") >= 0;
// boolean isNotTooOld= fileName.compareTo("1.0.0.201105300951") >= 0;
boolean isNotTooOld= true;

if (fileName.equals("1.0.0.qualifier") || (hasValidVersionNumber && isNotTooOld)) {
filteredFiles.add(parentFolder.append(fileName));
Expand Down

0 comments on commit d350df1

Please sign in to comment.