-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #885 from rkowase/refactor/remove_redundant_qualif…
…ier_name [Refactoring] Remove redundant qualifier names
- Loading branch information
Showing
3 changed files
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
core/model/src/commonMain/kotlin/io/github/droidkaigi/confsched2022/strings/Strings.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
package io.github.droidkaigi.confsched2022.strings | ||
|
||
import io.github.droidkaigi.confsched2022.model.Res | ||
import io.github.droidkaigi.confsched2022.model.Res.strings | ||
|
||
public val Strings: strings | ||
get() = Res.strings | ||
get() = strings | ||
|
||
// For iOS usage | ||
@Suppress("unused") | ||
public val shared: strings | ||
get() = Res.strings | ||
get() = strings |