From c2727324ffed12b98a0f6a67d6f1c92b161b9a0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20K=2EF=2E=20H=C3=B6lzenspies?= Date: Wed, 30 Oct 2024 15:39:51 +0000 Subject: [PATCH] Apply spotless --- .../java/org/pkl/core/stdlib/base/ListingNodes.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkl-core/src/main/java/org/pkl/core/stdlib/base/ListingNodes.java b/pkl-core/src/main/java/org/pkl/core/stdlib/base/ListingNodes.java index de91df88f..9368c9802 100644 --- a/pkl-core/src/main/java/org/pkl/core/stdlib/base/ListingNodes.java +++ b/pkl-core/src/main/java/org/pkl/core/stdlib/base/ListingNodes.java @@ -323,9 +323,9 @@ private static void checkNonEmpty(VmListing self, PklNode node) { if (self.isEmpty()) { CompilerDirectives.transferToInterpreter(); throw new VmExceptionBuilder() - .evalError("expectedNonEmptyListing") - .withLocation(node) - .build(); + .evalError("expectedNonEmptyListing") + .withLocation(node) + .build(); } } @@ -333,9 +333,9 @@ private static void checkSingleton(VmListing self, PklNode node) { if (self.getLength() != 1) { CompilerDirectives.transferToInterpreter(); throw new VmExceptionBuilder() - .evalError("expectedSingleElementListing") - .withLocation(node) - .build(); + .evalError("expectedSingleElementListing") + .withLocation(node) + .build(); } } }