File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
src/gov/nasa/worldwind/awt Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ The upcoming features of v2.1.0 are available now through the World Wind Java da
87
87
- Fixed WWJ-547, WorldWindowGLJPanel null pointer exception when setting Java look and feel.
88
88
- Fixed WWJ-548, EGM96 bilinear interpolation error.
89
89
- 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.
90
91
- Fixed an issue where AnalyticSurface returns an incorrect picked object when the altitude mode is CLAMP_TO_GROUND.
91
92
- Fixed an issue with the accuracy of airspace shape projection on the 3D ellipsoid. The geometry for airspace shapes
92
93
with very large dimensions are now displayed correctly. The following airspace shapes are affected: CappedCylinder,
Original file line number Diff line number Diff line change @@ -390,7 +390,7 @@ public synchronized void removePropertyChangeListener(PropertyChangeListener lis
390
390
@ Override
391
391
public synchronized void removePropertyChangeListener (String propertyName , PropertyChangeListener listener )
392
392
{
393
- super .removePropertyChangeListener (listener );
393
+ super .removePropertyChangeListener (propertyName , listener );
394
394
}
395
395
396
396
@ Override
You can’t perform that action at this time.
0 commit comments