Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ protected void onClusterItemRendered(T clusterItem, Marker marker) {
* @param clusterItem ClusterItem which you will obtain its marker
* @return a marker from a ClusterItem or null if it does not exists
*/
protected Marker getMarker(T clusterItem) {
public Marker getMarker(T clusterItem) {
return mMarkerCache.get(clusterItem);
}

Expand All @@ -733,7 +733,7 @@ protected Marker getMarker(T clusterItem) {
* @param marker which you will obtain its ClusterItem
* @return a ClusterItem from a marker or null if it does not exists
*/
protected T getClusterItem(Marker marker) {
public T getClusterItem(Marker marker) {
return mMarkerCache.get(marker);
}

Expand All @@ -742,7 +742,7 @@ protected T getClusterItem(Marker marker) {
* @param cluster which you will obtain its marker
* @return a marker from a cluster or null if it does not exists
*/
protected Marker getMarker(Cluster<T> cluster) {
public Marker getMarker(Cluster<T> cluster) {
return mClusterToMarker.get(cluster);
}

Expand All @@ -751,7 +751,7 @@ protected Marker getMarker(Cluster<T> cluster) {
* @param marker which you will obtain its Cluster
* @return a Cluster from a marker or null if it does not exists
*/
protected Cluster<T> getCluster(Marker marker) {
public Cluster<T> getCluster(Marker marker) {
return mMarkerToCluster.get(marker);
}

Expand Down