mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-10 02:20:14 +08:00
Remove unnecessary list creation
This commit is contained in:
parent
d10b1a9e3d
commit
07f6570470
@ -8,7 +8,6 @@ import net.mamoe.mirai.utils.solveIpAddress
|
|||||||
object TIMProtocol {
|
object TIMProtocol {
|
||||||
val SERVER_IP: List<String> = {
|
val SERVER_IP: List<String> = {
|
||||||
//add("183.60.56.29")
|
//add("183.60.56.29")
|
||||||
val list = mutableListOf<String>()
|
|
||||||
arrayOf(
|
arrayOf(
|
||||||
"sz3.tencent.com",
|
"sz3.tencent.com",
|
||||||
"sz4.tencent.com",
|
"sz4.tencent.com",
|
||||||
@ -17,9 +16,7 @@ object TIMProtocol {
|
|||||||
"sz8.tencent.com",
|
"sz8.tencent.com",
|
||||||
"sz9.tencent.com",
|
"sz9.tencent.com",
|
||||||
"sz2.tencent.com"
|
"sz2.tencent.com"
|
||||||
).forEach { list.add(solveIpAddress(it)) } // 需 IPv4 地址
|
).map { solveIpAddress(it) } // 需 IPv4 地址
|
||||||
|
|
||||||
list.toList()
|
|
||||||
}()//不使用lazy, 在初始化时就加载.
|
}()//不使用lazy, 在初始化时就加载.
|
||||||
|
|
||||||
val head = "02".hexToBytes()
|
val head = "02".hexToBytes()
|
||||||
|
Loading…
Reference in New Issue
Block a user