anistn / android-maps-extensions

Automatically exported from code.google.com/p/android-maps-extensions
0 stars 0 forks source link

Wrong implementation hideInfoWindow at ClusterMaker class. #25

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Method always throws exception.

old:
@Override
public void hideInfoWindow() {
    if (virtual != null) {
        virtual.hideInfoWindow();
    }
    throw new UnsupportedOperationException();
}

new:
@Override
public void hideInfoWindow() {
    if (virtual == null) throw new UnsupportedOperationException();
    virtual.hideInfoWindow();
}

Original issue reported on code.google.com by igor.goz...@gmail.com on 24 Jul 2013 at 10:57

GoogleCodeExporter commented 9 years ago
Hello Igor,

Thanks for noting that.

I have already removed that throw, but it was not yet released as a part of 
next version.
See the latest version here: 
http://code.google.com/p/android-maps-extensions/source/browse/android-maps-exte
nsions/src/pl/mg6/android/maps/extensions/impl/ClusterMarker.java

Original comment by maciek.g...@gmail.com on 24 Jul 2013 at 11:33

GoogleCodeExporter commented 9 years ago

Original comment by maciek.g...@gmail.com on 8 Aug 2013 at 2:50