Skip to content

Commit

Permalink
Added "Internal use only" to new style methods
Browse files Browse the repository at this point in the history
  • Loading branch information
jush committed Jan 11, 2023
1 parent 04d03ed commit 1f90e1a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sdk/src/main/java/com/mapbox/maps/Style.kt
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ class Style internal constructor(
}

/**
* NO-OP
* This API is for internal use only and will return a no-op result.
*/
@MapboxExperimental
override fun setStyleLightProperty(
Expand All @@ -395,15 +395,15 @@ class Style internal constructor(
}

/**
* NO-OP
* This API is for internal use only and will return a no-op result.
*/
@MapboxExperimental
override fun getStyleLights(): MutableList<StyleObjectInfo> {
return ArrayList(0)
}

/**
* NO-OP
* This API is for internal use only and will return a no-op result.
*/
@MapboxExperimental
override fun setStyleLights(lights: Value): Expected<String, None> {
Expand Down Expand Up @@ -536,7 +536,7 @@ class Style internal constructor(
}

/**
* NO-OP
* This API is for internal use only and will return a no-op result.
*/
@MapboxExperimental
override fun getStyleLightProperty(id: String, property: String): StylePropertyValue {
Expand Down

0 comments on commit 1f90e1a

Please sign in to comment.