Skip to content

Commit 0938f8a

Browse files
committed
better var naming
1 parent f3b4771 commit 0938f8a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/htmlunit/css/ComputedCssStyleDeclaration.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1674,9 +1674,9 @@ else if (child instanceof DomText) {
16741674
* elements
16751675
*/
16761676
private int getEmptyHeight(final DomElement element) {
1677-
final Integer cachedHeight2 = getCachedEmptyHeight();
1678-
if (cachedHeight2 != null) {
1679-
return cachedHeight2.intValue();
1677+
final Integer cachedEmptyHeight = getCachedEmptyHeight();
1678+
if (cachedEmptyHeight != null) {
1679+
return cachedEmptyHeight.intValue();
16801680
}
16811681

16821682
if (!element.mayBeDisplayed()) {

0 commit comments

Comments
 (0)