Skip to content

Commit 3e5a701

Browse files
author
Zach Glueckert
committed
Corrected overloaded removePropertyChangeListener method to utilize the overloaded super class method.
1 parent aa577b0 commit 3e5a701

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ The upcoming features of v2.1.0 are available now through the World Wind Java da
8787
- Fixed WWJ-547, WorldWindowGLJPanel null pointer exception when setting Java look and feel.
8888
- Fixed WWJ-548, EGM96 bilinear interpolation error.
8989
- Fixed WWJ-549, Rhumb line floating point errors when calculating due east or west positions.
90+
- Fixed WWJ-550, WorldWindowGLJPanel calls wrong super class removePropertyChangeListener method.
9091
- Fixed an issue where AnalyticSurface returns an incorrect picked object when the altitude mode is CLAMP_TO_GROUND.
9192
- Fixed an issue with the accuracy of airspace shape projection on the 3D ellipsoid. The geometry for airspace shapes
9293
with very large dimensions are now displayed correctly. The following airspace shapes are affected: CappedCylinder,

src/gov/nasa/worldwind/awt/WorldWindowGLJPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ public synchronized void removePropertyChangeListener(PropertyChangeListener lis
390390
@Override
391391
public synchronized void removePropertyChangeListener(String propertyName, PropertyChangeListener listener)
392392
{
393-
super.removePropertyChangeListener(listener);
393+
super.removePropertyChangeListener(propertyName, listener);
394394
}
395395

396396
@Override

0 commit comments

Comments
 (0)