Skip to content

Commit

Permalink
Remove deprecated setUseOverlay interface
Browse files Browse the repository at this point in the history
MOB-3003, MOB-3281
  • Loading branch information
andrews-moc authored and DavDo committed Feb 20, 2025
1 parent b51fc6a commit f6e815f
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions widgetssdk/src/main/java/com/glia/widgets/GliaWidgetsConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -205,19 +205,6 @@ class GliaWidgetsConfig private constructor(builder: Builder) {
return this
}

/**
* @param useOverlay - is it allowed to overlay the application
* @return Builder instance
* @deprecated Use [GliaWidgetsConfig.enableBubbleOutsideApp] and [GliaWidgetsConfig.enableBubbleInsideApp]
*/
@Deprecated("Please use GliaWidgetsConfig.enableBubbleOutsideApp and GliaWidgetsConfig.enableBubbleInsideApp")
fun setUseOverlay(useOverlay: Boolean): Builder {
Logger.logDeprecatedMethodUse(TAG, "GliaWidgetsConfig.setUseOverlay()")
this.enableBubbleOutsideApp = useOverlay
this.enableBubbleInsideApp = useOverlay
return this
}

/**
* @param enableBubbleOutsideApp - is bubble enabled outside the app
* @return Builder instance
Expand Down

0 comments on commit f6e815f

Please sign in to comment.