Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit afa84121 authored by Charlotte Lu's avatar Charlotte Lu
Browse files

InternetIconInjector.getIcon should be open class.

Test: Visual Test
Fix: 327985465
Change-Id: If0fc038bac2c8605a7da950801e1cdeadf345f34
parent 5da466a6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ open class WifiUtils {
         * @param noInternet True if a connected Wi-Fi network cannot access the Internet
         * @param level The number of bars to show (0-4)
         */
        fun getIcon(noInternet: Boolean, level: Int): Drawable? {
        open fun getIcon(noInternet: Boolean, level: Int): Drawable? {
            return context.getDrawable(getInternetIconResource(level, noInternet))
        }
    }