Reformat code

This commit is contained in:
世界 2024-02-02 17:52:57 +08:00
parent d5b1ff5051
commit f6b3fd9907
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
3 changed files with 10 additions and 7 deletions

View file

@ -31,6 +31,7 @@ class VPNService : VpnService(), PlatformInterfaceWrapper {
}
return service.onBind(intent)
}
override fun onDestroy() {
service.onDestroy()
}
@ -96,14 +97,14 @@ class VPNService : VpnService(), PlatformInterfaceWrapper {
}
val inet4RouteExcludeAddress = options.inet4RouteExcludeAddress
while (inet4RouteExcludeAddress.hasNext()) {
builder.excludeRoute(inet4RouteExcludeAddress.next().toIpPrefix())
}
while (inet4RouteExcludeAddress.hasNext()) {
builder.excludeRoute(inet4RouteExcludeAddress.next().toIpPrefix())
}
val inet6RouteExcludeAddress = options.inet6RouteExcludeAddress
while (inet6RouteExcludeAddress.hasNext()) {
builder.excludeRoute(inet6RouteExcludeAddress.next().toIpPrefix())
}
while (inet6RouteExcludeAddress.hasNext()) {
builder.excludeRoute(inet6RouteExcludeAddress.next().toIpPrefix())
}
} else {
val inet4RouteAddress = options.inet4RouteRange
if (inet4RouteAddress.hasNext()) {

View file

@ -42,6 +42,7 @@ class DashboardFragment : Fragment(R.layout.fragment_dashboard) {
Status.Stopped -> {
disablePager()
}
Status.Started -> {
enablePager()
}
@ -49,6 +50,7 @@ class DashboardFragment : Fragment(R.layout.fragment_dashboard) {
Status.Stopping -> {
disablePager()
}
else -> {}
}
}

View file

@ -108,7 +108,7 @@ open class CommandClient(
}
override fun clearLog() {
handler.clearLog()
handler.clearLog()
}
override fun writeLog(message: String?) {