Skip to content

Commit

Permalink
#6 Make comments of categories excluded on extraction-time editable
Browse files Browse the repository at this point in the history
Comments for categories that were detected to cause cycles are still not
editable.
  • Loading branch information
Dominik Mosen committed Jun 9, 2013
1 parent 6e22710 commit 43297a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wiki-analysis/src/graph/GraphExtractor.java
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ private void processExcludedCategories(boolean remove) {
.getHasSubcategoryIncidences(EdgeDirection.IN)) {
if (remove) {
e.set_blacklisted(true);
e.set_excluded(true);
e.set_excluded(false);
e.set_comment("excluded on extraction");
} else {
e.set_blacklisted(false);
Expand Down

0 comments on commit 43297a0

Please sign in to comment.