Use Eclipse formatter 4.25 with Spotless (#15264)

This version still checks test files.

See: openhab/openhab-core#3515

Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
Wouter Born
2023-07-18 09:02:05 +02:00
committed by GitHub
parent 397fc8d1cf
commit 0c3934f3c8
3 changed files with 5 additions and 4 deletions

View File

@@ -60,7 +60,7 @@ public class HomeManager extends RestManager {
UNKNOWN;
}
private static record EndpointValue<T>(T value) {
private static record EndpointValue<T> (T value) {
}
private static record EndpointUi(AccessType access, DisplayType display, String iconUrl, @Nullable String unit) {

View File

@@ -99,7 +99,7 @@ public abstract class AbstractHomeAssistantTests extends JavaTest {
.thenReturn(ThingTypeBuilder.instance(HA_TYPE_UID, HA_TYPE_LABEL).build());
when(transformationServiceProvider
.getTransformationService(JinjaTransformationProfile.PROFILE_TYPE_UID.getId()))
.thenReturn(jinjaTransformationService);
.thenReturn(jinjaTransformationService);
channelTypeProvider = spy(new MqttChannelTypeProvider(thingTypeRegistry));