Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Robert h schmidt #216

Merged
merged 17 commits into from
Aug 2, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
revert Catch message change
  • Loading branch information
RobertHSchmidt committed Aug 1, 2018
commit ea9613e234eca0a750cc57a9a29bc822b1474817
7 changes: 3 additions & 4 deletions src/java/boa/datagen/scm/AbstractCommit.java
Original file line number Diff line number Diff line change
Expand Up @@ -649,11 +649,10 @@ private boolean parseJavaFile(final String path, final ChangedFile.Builder fb, f
BytesWritable bw = new BytesWritable(ast.build().toByteArray());
connector.astWriter.append(new LongWritable(connector.astWriterLen), bw);
connector.astWriterLen += bw.getLength();
} catch (Exception e) {
if (debug) {
System.err.println("ast write error on project " + projectName);
} catch (IOException e) {
if (debug)
e.printStackTrace();
}

}
// fb.setComments(comments);
}
Expand Down