mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-31 06:17:57 +01:00 
			
		
		
		
	Auto-formatting
This commit is contained in:
		| @@ -32,7 +32,7 @@ class BrowseController : | ||||
|     TabbedController { | ||||
|  | ||||
|     constructor(toExtensions: Boolean = false) : super( | ||||
|             bundleOf(TO_EXTENSIONS_EXTRA to toExtensions) | ||||
|         bundleOf(TO_EXTENSIONS_EXTRA to toExtensions) | ||||
|     ) | ||||
|  | ||||
|     @Suppress("unused") | ||||
|   | ||||
| @@ -12,10 +12,10 @@ class ExtensionTrustDialog<T>(bundle: Bundle? = null) : DialogController(bundle) | ||||
|         where T : Controller, T : ExtensionTrustDialog.Listener { | ||||
|  | ||||
|     constructor(target: T, signatureHash: String, pkgName: String) : this( | ||||
|             bundleOf( | ||||
|                     SIGNATURE_KEY to signatureHash, | ||||
|                     PKGNAME_KEY to pkgName | ||||
|             ) | ||||
|         bundleOf( | ||||
|             SIGNATURE_KEY to signatureHash, | ||||
|             PKGNAME_KEY to pkgName | ||||
|         ) | ||||
|     ) { | ||||
|         targetController = target | ||||
|     } | ||||
|   | ||||
| @@ -56,7 +56,7 @@ class ExtensionDetailsController(bundle: Bundle? = null) : | ||||
|     private var preferenceScreen: PreferenceScreen? = null | ||||
|  | ||||
|     constructor(pkgName: String) : this( | ||||
|             bundleOf(PKGNAME_KEY to pkgName) | ||||
|         bundleOf(PKGNAME_KEY to pkgName) | ||||
|     ) | ||||
|  | ||||
|     init { | ||||
|   | ||||
| @@ -42,7 +42,7 @@ class SourcePreferencesController(bundle: Bundle? = null) : | ||||
|     private var preferenceScreen: PreferenceScreen? = null | ||||
|  | ||||
|     constructor(sourceId: Long) : this( | ||||
|             bundleOf(SOURCE_ID to sourceId) | ||||
|         bundleOf(SOURCE_ID to sourceId) | ||||
|     ) | ||||
|  | ||||
|     override fun inflateView(inflater: LayoutInflater, container: ViewGroup): View { | ||||
|   | ||||
| @@ -20,10 +20,10 @@ class MigrationMangaController : | ||||
|     private var adapter: FlexibleAdapter<IFlexible<*>>? = null | ||||
|  | ||||
|     constructor(sourceId: Long, sourceName: String?) : super( | ||||
|             bundleOf( | ||||
|                     SOURCE_ID_EXTRA to sourceId, | ||||
|                     SOURCE_NAME_EXTRA to sourceName | ||||
|             ) | ||||
|         bundleOf( | ||||
|             SOURCE_ID_EXTRA to sourceId, | ||||
|             SOURCE_NAME_EXTRA to sourceName | ||||
|         ) | ||||
|     ) | ||||
|  | ||||
|     @Suppress("unused") | ||||
|   | ||||
| @@ -14,7 +14,7 @@ import eu.kanade.tachiyomi.ui.browse.source.browse.BrowseSourcePresenter | ||||
| class LatestUpdatesController(bundle: Bundle) : BrowseSourceController(bundle) { | ||||
|  | ||||
|     constructor(source: CatalogueSource) : this( | ||||
|             bundleOf(SOURCE_ID_KEY to source.id) | ||||
|         bundleOf(SOURCE_ID_KEY to source.id) | ||||
|     ) | ||||
|  | ||||
|     override fun createPresenter(): BrowseSourcePresenter { | ||||
|   | ||||
| @@ -99,10 +99,10 @@ class MangaController : | ||||
|     DeleteChaptersDialog.Listener { | ||||
|  | ||||
|     constructor(manga: Manga?, fromSource: Boolean = false) : super( | ||||
|             bundleOf( | ||||
|                     MANGA_EXTRA to (manga?.id ?: 0), | ||||
|                     FROM_SOURCE_EXTRA to fromSource | ||||
|             ) | ||||
|         bundleOf( | ||||
|             MANGA_EXTRA to (manga?.id ?: 0), | ||||
|             FROM_SOURCE_EXTRA to fromSource | ||||
|         ) | ||||
|     ) { | ||||
|         this.manga = manga | ||||
|         if (manga != null) { | ||||
|   | ||||
| @@ -26,8 +26,8 @@ class DownloadCustomChaptersDialog<T> : DialogController | ||||
|      * @param maxChapters maximal number of chapters that user can download. | ||||
|      */ | ||||
|     constructor(target: T, maxChapters: Int) : super( | ||||
|             // Add maximum number of chapters to download value to bundle. | ||||
|             bundleOf(KEY_ITEM_MAX to maxChapters) | ||||
|         // Add maximum number of chapters to download value to bundle. | ||||
|         bundleOf(KEY_ITEM_MAX to maxChapters) | ||||
|     ) { | ||||
|         targetController = target | ||||
|         this.maxChapters = maxChapters | ||||
|   | ||||
| @@ -15,7 +15,7 @@ import eu.kanade.tachiyomi.widget.DialogCheckboxView | ||||
| class SetChapterSettingsDialog(bundle: Bundle? = null) : DialogController(bundle) { | ||||
|  | ||||
|     constructor(manga: Manga) : this( | ||||
|             bundleOf(MANGA_KEY to manga) | ||||
|         bundleOf(MANGA_KEY to manga) | ||||
|     ) | ||||
|  | ||||
|     override fun onCreateDialog(savedViewState: Bundle?): Dialog { | ||||
|   | ||||
| @@ -21,7 +21,7 @@ class SetTrackChaptersDialog<T> : DialogController | ||||
|     private val item: TrackItem | ||||
|  | ||||
|     constructor(target: T, item: TrackItem) : super( | ||||
|             bundleOf(KEY_ITEM_TRACK to item.track) | ||||
|         bundleOf(KEY_ITEM_TRACK to item.track) | ||||
|     ) { | ||||
|         targetController = target | ||||
|         this.item = item | ||||
|   | ||||
| @@ -22,7 +22,7 @@ class SetTrackReadingDatesDialog<T> : DialogController | ||||
|     private val dateToUpdate: ReadingDate | ||||
|  | ||||
|     constructor(target: T, dateToUpdate: ReadingDate, item: TrackItem) : super( | ||||
|             bundleOf(KEY_ITEM_TRACK to item.track) | ||||
|         bundleOf(KEY_ITEM_TRACK to item.track) | ||||
|     ) { | ||||
|         targetController = target | ||||
|         this.item = item | ||||
|   | ||||
| @@ -21,7 +21,7 @@ class SetTrackScoreDialog<T> : DialogController | ||||
|     private val item: TrackItem | ||||
|  | ||||
|     constructor(target: T, item: TrackItem) : super( | ||||
|             bundleOf(KEY_ITEM_TRACK to item.track) | ||||
|         bundleOf(KEY_ITEM_TRACK to item.track) | ||||
|     ) { | ||||
|         targetController = target | ||||
|         this.item = item | ||||
|   | ||||
| @@ -19,7 +19,7 @@ class SetTrackStatusDialog<T> : DialogController | ||||
|     private val item: TrackItem | ||||
|  | ||||
|     constructor(target: T, item: TrackItem) : super( | ||||
|             bundleOf(KEY_ITEM_TRACK to item.track) | ||||
|         bundleOf(KEY_ITEM_TRACK to item.track) | ||||
|     ) { | ||||
|         targetController = target | ||||
|         this.item = item | ||||
|   | ||||
| @@ -31,7 +31,7 @@ class TrackController : | ||||
|     SetTrackReadingDatesDialog.Listener { | ||||
|  | ||||
|     constructor(manga: Manga?) : super( | ||||
|             bundleOf(MANGA_EXTRA to (manga?.id ?: 0)) | ||||
|         bundleOf(MANGA_EXTRA to (manga?.id ?: 0)) | ||||
|     ) { | ||||
|         this.manga = manga | ||||
|     } | ||||
|   | ||||
| @@ -42,7 +42,7 @@ class TrackSearchDialog : DialogController { | ||||
|         get() = targetController as TrackController | ||||
|  | ||||
|     constructor(target: TrackController, service: TrackService) : super( | ||||
|             bundleOf(KEY_SERVICE to service.id) | ||||
|         bundleOf(KEY_SERVICE to service.id) | ||||
|     ) { | ||||
|         targetController = target | ||||
|         this.service = service | ||||
|   | ||||
| @@ -185,7 +185,7 @@ class AboutController : SettingsController() { | ||||
|     class NewUpdateDialogController(bundle: Bundle? = null) : DialogController(bundle) { | ||||
|  | ||||
|         constructor(body: String, url: String) : this( | ||||
|                 bundleOf(BODY_KEY to body, URL_KEY to url) | ||||
|             bundleOf(BODY_KEY to body, URL_KEY to url) | ||||
|         ) | ||||
|  | ||||
|         override fun onCreateDialog(savedViewState: Bundle?): Dialog { | ||||
|   | ||||
| @@ -252,7 +252,7 @@ class SettingsBackupController : SettingsController() { | ||||
|  | ||||
|     class RestoreBackupDialog(bundle: Bundle? = null) : DialogController(bundle) { | ||||
|         constructor(uri: Uri) : this( | ||||
|                 bundleOf(KEY_URI to uri) | ||||
|             bundleOf(KEY_URI to uri) | ||||
|         ) | ||||
|  | ||||
|         override fun onCreateDialog(savedViewState: Bundle?): Dialog { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user