Skip to content

Commit

Permalink
Corrected complete/partial property list argument name
Browse files Browse the repository at this point in the history
  • Loading branch information
tinwelint committed Apr 8, 2019
1 parent 8a080e2 commit be1ea78
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -103,10 +103,10 @@ public Iterable<IndexProxy> getAllIndexProxies()
return indexMap.getAllIndexProxies();
}

public Collection<SchemaDescriptor> getRelatedIndexes( long[] changedEntityTokens, long[] unchangedEntityTokens, int[] sortedProperties, boolean mode,
EntityType entityType )
public Collection<SchemaDescriptor> getRelatedIndexes( long[] changedEntityTokens, long[] unchangedEntityTokens, int[] sortedProperties,
boolean propertyListIsComplete, EntityType entityType )
{
return indexMap.getRelatedIndexes( changedEntityTokens, unchangedEntityTokens, sortedProperties, mode, entityType );
return indexMap.getRelatedIndexes( changedEntityTokens, unchangedEntityTokens, sortedProperties, propertyListIsComplete, entityType );
}

public IndexUpdaterMap createIndexUpdaterMap( IndexUpdateMode mode )
Expand Down

0 comments on commit be1ea78

Please sign in to comment.