浏览代码

Fix StubSource param order to match previous SourceData order (#9485)

SourceData was replaced with direct StubSource usage but the param order was changed without changing the usage; fixing the param order as such.
FlaminSarge 1 年之前
父节点
当前提交
4395202703
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      domain/src/main/java/tachiyomi/domain/source/model/StubSource.kt

+ 1 - 1
domain/src/main/java/tachiyomi/domain/source/model/StubSource.kt

@@ -9,8 +9,8 @@ import rx.Observable
 @Suppress("OverridingDeprecatedMember")
 class StubSource(
     override val id: Long,
-    override val name: String,
     override val lang: String,
+    override val name: String,
 ) : Source {
 
     val isInvalid: Boolean = name.isBlank() || lang.isBlank()