Skip to content

Commit

Permalink
dont hide fields
Browse files Browse the repository at this point in the history
  • Loading branch information
ryber committed May 8, 2024
1 parent faf2c3f commit d7efdd2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions unirest/src/main/java/kong/unirest/core/Cookie.java
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit d7efdd2

Please sign in to comment.