From a77c1453d6ccefd6f10ae45c3225b140310d1ded Mon Sep 17 00:00:00 2001 From: Rob Faust Date: Sat, 2 Dec 2023 00:08:40 -0600 Subject: [PATCH] Debugging --- build.gradle | 2 +- .../java/com/labelzoom/api/model/components/IComponent.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 8015795..7c23abe 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ plugins { } group = 'com.labelzoom.api' -version = '1.0.4' +version = '1.0.5' repositories { mavenCentral() diff --git a/src/main/java/com/labelzoom/api/model/components/IComponent.java b/src/main/java/com/labelzoom/api/model/components/IComponent.java index 03582be..b3635ac 100644 --- a/src/main/java/com/labelzoom/api/model/components/IComponent.java +++ b/src/main/java/com/labelzoom/api/model/components/IComponent.java @@ -15,7 +15,7 @@ public interface IComponent extends Cloneable void setRotation(float rotation); boolean isReverse(); - void setReverse(); + void setReverse(boolean reverse); Justification getJustification(); void setJustification(Justification justification);