Skip to content

minor variable name typo fix #532

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 27, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ public class InternalSummaryCounters implements SummaryCounters
private final int indexesAdded;
private final int indexesRemoved;
private final int constraintsAdded;
private final int constrainsRemoved;
private final int constraintsRemoved;

public InternalSummaryCounters(
int nodesCreated, int nodesDeleted,
int relationshipsCreated, int relationshipsDeleted,
int propertiesSet,
int labelsAdded, int labelsRemoved,
int indexesAdded, int indexesRemoved,
int constraintsAdded, int constrainsRemoved )
int constraintsAdded, int constraintsRemoved )
{
this.nodesCreated = nodesCreated;
this.nodesDeleted = nodesDeleted;
Expand All @@ -54,7 +54,7 @@ public InternalSummaryCounters(
this.indexesAdded = indexesAdded;
this.indexesRemoved = indexesRemoved;
this.constraintsAdded = constraintsAdded;
this.constrainsRemoved = constrainsRemoved;
this.constraintsRemoved = constraintsRemoved;
}

@Override
Expand All @@ -71,7 +71,7 @@ public boolean containsUpdates()
|| isPositive( indexesAdded )
|| isPositive( indexesRemoved )
|| isPositive( constraintsAdded )
|| isPositive( constrainsRemoved );
|| isPositive( constraintsRemoved );
}

@Override
Expand Down Expand Up @@ -137,7 +137,7 @@ public int constraintsAdded()
@Override
public int constraintsRemoved()
{
return constrainsRemoved;
return constraintsRemoved;
}

@Override
Expand All @@ -164,7 +164,7 @@ public boolean equals( Object o )
&& indexesAdded == that.indexesAdded
&& indexesRemoved == that.indexesRemoved
&& constraintsAdded == that.constraintsAdded
&& constrainsRemoved == that.constrainsRemoved;
&& constraintsRemoved == that.constraintsRemoved;
}

@Override
Expand All @@ -180,7 +180,7 @@ public int hashCode()
result = 31 * result + indexesAdded;
result = 31 * result + indexesRemoved;
result = 31 * result + constraintsAdded;
result = 31 * result + constrainsRemoved;
result = 31 * result + constraintsRemoved;
return result;
}

Expand Down