Skip to content

Commit

Permalink
Merge pull request #9246 from vnickolov/http-wcc
Browse files Browse the repository at this point in the history
http wcc
  • Loading branch information
jjaderberg authored Jul 1, 2024
2 parents 3ed3944 + e3da09a commit ec3cce3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public static NodePropertyValues extractSeedingNodePropertyValues(Graph graph, S
if (nodePropertyValues.valueType() != ValueType.LONG) {
throw new IllegalArgumentException(
formatWithLocale(
" Provided seeding property `%s` does not comprise exclusively of long values",
"Provided seeding property `%s` does not comprise exclusively of long values",
seedingProperty
));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ void shouldThrowForNonLongValues(){

assertThatThrownBy(()-> CommunityCompanion.extractSeedingNodePropertyValues(graph,"foo"))
.hasMessageContaining(
"Provided seeding property `foo` does not comprise exclusively of long values");
"Provided seeding property `foo` does not comprise exclusively of long values");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ default Map<String, Object> cleansed(Map<String, Object> map, Collection<String>
String READ_CONCURRENCY_KEY = "readConcurrency";
String VALIDATE_RELATIONSHIPS_KEY = "validateRelationships";

static GraphProjectConfig emptyWithName(String userName, String graphName) {
public static GraphProjectConfig emptyWithName(String userName, String graphName) {
return GraphCatalogConfigImpl.builder()
.username(userName)
.graphName(graphName)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@

import java.util.Optional;

class DegreeCentralityResultBuilderForMutateMode implements ResultBuilder<DegreeCentralityMutateConfig, DegreeCentralityResult, CentralityMutateResult, NodePropertiesWritten> {
public class DegreeCentralityResultBuilderForMutateMode implements ResultBuilder<DegreeCentralityMutateConfig, DegreeCentralityResult, CentralityMutateResult, NodePropertiesWritten> {
private final GenericCentralityResultBuilderForMutateMode genericResultBuilder = new GenericCentralityResultBuilderForMutateMode();

private final boolean shouldComputeCentralityDistribution;

DegreeCentralityResultBuilderForMutateMode(boolean shouldComputeCentralityDistribution) {
public DegreeCentralityResultBuilderForMutateMode(boolean shouldComputeCentralityDistribution) {
this.shouldComputeCentralityDistribution = shouldComputeCentralityDistribution;
}

Expand Down

0 comments on commit ec3cce3

Please sign in to comment.