aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/apache/commons/lang3/builder
diff options
context:
space:
mode:
authorGary Gregory <garydgregory@gmail.com>2021-09-01 14:39:35 -0400
committerGary Gregory <garydgregory@gmail.com>2021-09-01 14:39:35 -0400
commit8efbb7df05d879dec15433e87a51392810936da5 (patch)
treeefd249d63e9e54f99c0aa80fd8b6489019b58f14 /src/main/java/org/apache/commons/lang3/builder
parent5a580fb9cbb669f87f124c455e56194b8f83da49 (diff)
downloadapache-commons-lang-8efbb7df05d879dec15433e87a51392810936da5.tar.gz
No leading underscores in private names.
Diffstat (limited to 'src/main/java/org/apache/commons/lang3/builder')
-rw-r--r--src/main/java/org/apache/commons/lang3/builder/IDKey.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/org/apache/commons/lang3/builder/IDKey.java b/src/main/java/org/apache/commons/lang3/builder/IDKey.java
index 426848a31..64e8fc5b7 100644
--- a/src/main/java/org/apache/commons/lang3/builder/IDKey.java
+++ b/src/main/java/org/apache/commons/lang3/builder/IDKey.java
@@ -32,15 +32,15 @@ final class IDKey {
/**
* Constructor for IDKey
- * @param _value The value
+ * @param value The value
*/
- IDKey(final Object _value) {
+ IDKey(final Object value) {
// This is the Object hash code
- id = System.identityHashCode(_value);
+ this.id = System.identityHashCode(value);
// There have been some cases (LANG-459) that return the
// same identity hash code for different objects. So
// the value is also added to disambiguate these cases.
- value = _value;
+ this.value = value;
}
/**