Skip to content

Commit

Permalink
Merge pull request #1 from bertbalcaen/master
Browse files Browse the repository at this point in the history
Fix for Processing 2b7
  • Loading branch information
Pessimistress committed Dec 9, 2012
2 parents 9a2fce1 + 1ac412f commit 2cc9145
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -161,3 +161,6 @@ pip-log.txt

# Mac crap
.DS_Store

# Sublime-Processing
build-tmp/
2 changes: 1 addition & 1 deletion src/IsochronicMap/IsochronicMap.pde
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ void loadTimeTable() {
//load files
java.io.File folder = new java.io.File(dataPath(TIMETABLES_PATH));
java.io.FilenameFilter csvFilter = new java.io.FilenameFilter() {
public boolean accept(File dir, String name) {
public boolean accept(java.io.File dir, String name) {
return name.toLowerCase().endsWith(".csv");
}
};
Expand Down

0 comments on commit 2cc9145

Please sign in to comment.