Skip to content

Commit

Permalink
#92 add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
paulhoule committed Dec 17, 2013
1 parent 17faf7a commit 135445d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
14 changes: 9 additions & 5 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ protected boolean matches(Text subject, Iterable<Text> facts) {
PrimitiveTriple pt=codec.decode(fact.toString());
if (/* A.equals(pt.getPredicate()) && */ typeList.contains(pt.getObject()) ) {
log.info("matched object, predicate=["+pt.getPredicate()+"]");
log.info("equals status for A operator and predicate: ["+A.equals(pt.getPredicate())+"]")
log.info("equals status for A operator and predicate: ["+A.equals(pt.getPredicate())+"]");
return true;
}
}
Expand Down

0 comments on commit 135445d

Please sign in to comment.