Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
jamo committed Nov 22, 2015
1 parent aae71c3 commit aa97a60
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,12 @@ protected boolean skipFile(Path file) {
* <p>TODO: refactor, I don't like this.
*/
public void maybeCopyAndFilterFile(Path file, Path repoPath, Path exercisePath) {
Path relativePath = file.subpath(repoPath.getNameCount()-1, file.getNameCount());
// System.out.println("file: " + file);
// System.out.println("repoPath: " + repoPath);
// System.out.println("exPath: " + exercisePath);
Path relativePath = file.subpath(repoPath.getNameCount(), file.getNameCount());
// System.out.println("relativePath: " + relativePath);
// System.out.println("");
logger.info("Looking into file: {} ", file);
try {
if (skipFile(file)) {
Expand Down

0 comments on commit aa97a60

Please sign in to comment.