IOntologyProperty first = firstGraph.getUriToProperty().get(uri);
IOntologyProperty second = secondGraph.getUriToProperty().get(uri);
bind(first, second, SAME_URI);
}
PropertyComparator propertyComparator = new PropertyComparator(mappedConcepts);
Set<String> commonLabelSet = SetHelper.INSTANCE.setIntersection(firstGraph.getPropertyLabels(),
secondGraph.getPropertyLabels());
for (String label : commonLabelSet) {
for (IOntologyProperty first : firstGraph.getLabelToProperty().get(label)) {
for (IOntologyProperty second : secondGraph.getLabelToProperty().get(label)) {