Skip to content

Commit

Permalink
[annotation] make package private abstract classes public
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasPaczos committed Nov 13, 2018
1 parent fe1585b commit f09d2d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* @param <U> type of annotation click listener, depends on generic T
* @param <V> type of annotation long click listener, depends on generic T
*/
abstract class AnnotationManager<
public abstract class AnnotationManager<
L extends Layer,
T extends Annotation,
S extends Options<T>,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.mapbox.mapboxsdk.plugins.annotation;

abstract class Options<T extends Annotation> {
public abstract class Options<T extends Annotation> {

abstract T build(long id, AnnotationManager<?, T, ?, ?, ?, ?> annotationManager);
}

0 comments on commit f09d2d0

Please sign in to comment.