We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3b4771 commit 0938f8aCopy full SHA for 0938f8a
src/main/java/org/htmlunit/css/ComputedCssStyleDeclaration.java
@@ -1674,9 +1674,9 @@ else if (child instanceof DomText) {
1674
* elements
1675
*/
1676
private int getEmptyHeight(final DomElement element) {
1677
- final Integer cachedHeight2 = getCachedEmptyHeight();
1678
- if (cachedHeight2 != null) {
1679
- return cachedHeight2.intValue();
+ final Integer cachedEmptyHeight = getCachedEmptyHeight();
+ if (cachedEmptyHeight != null) {
+ return cachedEmptyHeight.intValue();
1680
}
1681
1682
if (!element.mayBeDisplayed()) {
0 commit comments