Skip to content

Commit

Permalink
Remove redundant spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
roimenashe committed Dec 21, 2023
1 parent e57ad40 commit b0b1f22
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ private void processServerVersionRefreshFrequency(int serverVersionRefreshSecond
}
}


@Bean(name = "aerospikeClientPolicy")
@ConditionalOnMissingBean
public ClientPolicy aerospikeClientPolicy(AerospikeProperties properties,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ public IAerospikeClient aerospikeClientMock() {
when(client.getWritePolicyDefault()).thenReturn(new WritePolicy());
return client;
}

}

@AutoConfiguration
Expand All @@ -41,7 +40,6 @@ public ServerVersionSupport aerospikeServerVersionSupportMock() {
when(serverVersionSupport.getServerVersion()).thenReturn("5.0.0.0");
return serverVersionSupport;
}

}

@AutoConfiguration
Expand All @@ -66,7 +64,6 @@ public static class CustomConversionsConfig {
AerospikeCustomConversions myCustomConversions() {
return new AerospikeCustomConversions(List.of(new CityToStringConverter()));
}

}

public static class CityToStringConverter implements Converter<City, String> {
Expand Down

0 comments on commit b0b1f22

Please sign in to comment.