Repository: carbondata Updated Branches: refs/heads/master 1dfbcfccc -> 8e7fceb71
[HOTFIX] Fixed checkstyle issue Fixed checkstyle issue This closes #2298 Project: http://git-wip-us.apache.org/repos/asf/carbondata/repo Commit: http://git-wip-us.apache.org/repos/asf/carbondata/commit/8e7fceb7 Tree: http://git-wip-us.apache.org/repos/asf/carbondata/tree/8e7fceb7 Diff: http://git-wip-us.apache.org/repos/asf/carbondata/diff/8e7fceb7 Branch: refs/heads/master Commit: 8e7fceb719e8c471415bf96baca132428424f961 Parents: 1dfbcfc Author: kumarvishal09 <[email protected]> Authored: Thu May 10 23:34:36 2018 +0530 Committer: kunal642 <[email protected]> Committed: Thu May 10 23:39:36 2018 +0530 ---------------------------------------------------------------------- .../core/readcommitter/LatestFilesReadCommittedScope.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/carbondata/blob/8e7fceb7/core/src/main/java/org/apache/carbondata/core/readcommitter/LatestFilesReadCommittedScope.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/carbondata/core/readcommitter/LatestFilesReadCommittedScope.java b/core/src/main/java/org/apache/carbondata/core/readcommitter/LatestFilesReadCommittedScope.java index 8abf537..de7f8a9 100644 --- a/core/src/main/java/org/apache/carbondata/core/readcommitter/LatestFilesReadCommittedScope.java +++ b/core/src/main/java/org/apache/carbondata/core/readcommitter/LatestFilesReadCommittedScope.java @@ -125,7 +125,7 @@ public class LatestFilesReadCommittedScope implements ReadCommittedScope { if (file == null) { // For nonTransactional table, files can be removed at any point of time. // So cannot assume files will be present - throw new IOException("No files are present in the table location :"+ carbonFilePath); + throw new IOException("No files are present in the table location :" + carbonFilePath); } Map<String, List<String>> indexFileStore = new HashMap<>(); if (file.isDirectory()) {
