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

Commit fb91f165 authored by Charlotte Lu's avatar Charlotte Lu Committed by Android (Google) Code Review
Browse files

Merge "InternetIconInjector.getIcon should be open class." into main

parents eae89f19 afa84121
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))
        }
    }