Skip to content

Commit

Permalink
[ci] Name variables instead of arg0 type
Browse files Browse the repository at this point in the history
  • Loading branch information
hazendaz committed Oct 6, 2024
1 parent 38f81b4 commit 7fc1671
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public void setAttribute(final String attributeName, final Object attributeValue
}

@Override
public void setMaxInactiveInterval(final int arg0) {
public void setMaxInactiveInterval(final int primativeInt) {
// Do Nothing
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public final HttpSessionContext getSessionContext() {
@Deprecated
@InlineMe(replacement = "null")
@Override
public final Object getValue(final String arg0) {
public final Object getValue(final String string) {
return null;
}

Expand Down Expand Up @@ -129,7 +129,7 @@ public boolean isNew() {
*/
@Deprecated
@Override
public void putValue(final String arg0, final Object arg1) {
public void putValue(final String string, final Object object) {
// Do Nothing
}

Expand All @@ -145,7 +145,7 @@ public void removeAttribute(final String attributeName) {
*/
@Deprecated
@Override
public void removeValue(final String arg0) {
public void removeValue(final String string) {
// Do Nothing
}

Expand All @@ -155,7 +155,7 @@ public void setAttribute(final String attributeName, final Object attributeValue
}

@Override
public void setMaxInactiveInterval(final int arg0) {
public void setMaxInactiveInterval(final int primativeInt) {
// Do Nothing
}
}

0 comments on commit 7fc1671

Please sign in to comment.