Skip to content

Commit

Permalink
Set isRanking and isPartition as private methods
Browse files Browse the repository at this point in the history
  • Loading branch information
mbastian committed Dec 30, 2013
1 parent 7a2dcf9 commit d873611
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ private void refreshFunctions() {
}
}

public boolean isPartition(Column column) {
private boolean isPartition(Column column) {
Index index;
if (AttributeUtils.isNodeColumn(column)) {
index = localScale ? graphModel.getNodeIndex(graphModel.getVisibleView()) : graphModel.getNodeIndex();
Expand Down Expand Up @@ -246,7 +246,7 @@ public boolean isPartition(Column column) {
return false;
}

public boolean isRanking(Column column) {
private boolean isRanking(Column column) {
if (column.isNumber()) {
Index index;
if (AttributeUtils.isNodeColumn(column)) {
Expand Down

0 comments on commit d873611

Please sign in to comment.