From d7efdd27a0e66e030d6562fa61c435c66d08cc07 Mon Sep 17 00:00:00 2001 From: Ryan Bergman Date: Wed, 8 May 2024 17:53:19 -0500 Subject: [PATCH] dont hide fields --- unirest/src/main/java/kong/unirest/core/Cookie.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/unirest/src/main/java/kong/unirest/core/Cookie.java b/unirest/src/main/java/kong/unirest/core/Cookie.java index abacdcea..799a54a2 100644 --- a/unirest/src/main/java/kong/unirest/core/Cookie.java +++ b/unirest/src/main/java/kong/unirest/core/Cookie.java @@ -180,12 +180,12 @@ public boolean isPartitioned() { return this.partitioned; } - public void setPartitioned(boolean value) { - this.partitioned = value; + public void setPartitioned(boolean partitionedFlag) { + this.partitioned = partitionedFlag; } - public void setSecured(boolean value) { - this.secure = value; + public void setSecured(boolean secureFlag) { + this.secure = secureFlag; } private static class Pair {