From 400fcdb633812b58bb660ada1cd476a20c98f050 Mon Sep 17 00:00:00 2001 From: Sebastian Hartte Date: Wed, 1 Jul 2020 00:50:37 +0200 Subject: [PATCH] Formatting fix --- .../java/appeng/core/features/registries/GridCacheRegistry.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/appeng/core/features/registries/GridCacheRegistry.java b/src/main/java/appeng/core/features/registries/GridCacheRegistry.java index f60386214..520d06839 100644 --- a/src/main/java/appeng/core/features/registries/GridCacheRegistry.java +++ b/src/main/java/appeng/core/features/registries/GridCacheRegistry.java @@ -40,7 +40,7 @@ public final class GridCacheRegistry implements IGridCacheRegistry { @Nonnull IGridCacheFactory factory) { if (registry.stream().anyMatch(r -> r.cacheClass.equals(iface))) { - throw new IllegalArgumentException("Implementation for grid cache "+ iface + " is already registered!"); + throw new IllegalArgumentException("Implementation for grid cache " + iface + " is already registered!"); } registry.add(new GridCacheRegistration<>(iface, factory));