You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by se...@apache.org on 2016/12/14 12:10:15 UTC

[08/12] flink git commit: [hotfix] [core] Fix typo in variable name

[hotfix] [core] Fix typo in variable name

This closes #3002


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/e4c767a3
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/e4c767a3
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/e4c767a3

Branch: refs/heads/master
Commit: e4c767a372fb0db840b8288a54d8712c660779f5
Parents: ef6b473
Author: Raghav <ra...@gmail.com>
Authored: Tue Dec 13 21:31:25 2016 -0800
Committer: Stephan Ewen <se...@apache.org>
Committed: Wed Dec 14 12:43:33 2016 +0100

----------------------------------------------------------------------
 .../java/org/apache/flink/api/common/io/GlobFilePathFilter.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/e4c767a3/flink-core/src/main/java/org/apache/flink/api/common/io/GlobFilePathFilter.java
----------------------------------------------------------------------
diff --git a/flink-core/src/main/java/org/apache/flink/api/common/io/GlobFilePathFilter.java b/flink-core/src/main/java/org/apache/flink/api/common/io/GlobFilePathFilter.java
index 4aaf481..a3a78ae 100644
--- a/flink-core/src/main/java/org/apache/flink/api/common/io/GlobFilePathFilter.java
+++ b/flink-core/src/main/java/org/apache/flink/api/common/io/GlobFilePathFilter.java
@@ -90,8 +90,8 @@ public class GlobFilePathFilter extends FilePathFilter {
 			return false;
 		}
 
-		for (PathMatcher mather : includeMatchers) {
-			if (mather.matches(Paths.get(filePath.getPath()))) {
+		for (PathMatcher matcher : includeMatchers) {
+			if (matcher.matches(Paths.get(filePath.getPath()))) {
 				return shouldExclude(filePath);
 			}
 		}