Skip to content

Commit

Permalink
Merge branch 'master' into feature/project-explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
pulse00 committed Feb 26, 2013
2 parents 8df8031 + ecb229e commit 18c68b8
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ public void apply(ICompletionReporter reporter) throws BadLocationException {

Service s = new Service(parent, service.getElementName());
s.setId(service.getId());
System.err.println("reporting " + s.getElementName());
reporter.reportType(s, "", range);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ public void insert(String key, String value, IPath path) throws Exception {

private void insertBatch(PreparedStatement statement, String key, String value, IPath path) throws Exception {
int param = 0;
System.err.println(key + " " + value);
statement.setString(++param, key);
statement.setString(++param, value);
statement.setString(++param, path.toString());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ public boolean isValid(ISourceModule sourceModule, int offset,
if (TwigTextSequenceUtilities.isInFunction(statement)) {
return false;
}
System.err.println("report");
int startOffset = SymfonyTextSequenceUtilities.readViewPathStartIndex(statement);
String path = getDocument().getText().substring(statement.getOriginalOffset(startOffset), offset);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ public IHyperlink[] detectHyperlinks(ITextViewer textViewer,
String text = document.get(wordRegion.getOffset(),
wordRegion.getLength());

System.err.println(text);
} catch (Exception e) {
e.printStackTrace();
}
Expand Down

0 comments on commit 18c68b8

Please sign in to comment.