diff options
| author | Roman / Linnea Gräf <roman.graef@gmail.com> | 2023-02-24 15:17:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-24 15:17:10 +0100 |
| commit | df945f9d58d4f40f9adc4727c4f8d548b21fa4b0 (patch) | |
| tree | 36a7e6b484152aadb91e03cd968a78d956b6129b /src/main/kotlin/io/github/moulberry/notenoughupdates/util/KotlinStringUtils.kt | |
| parent | f72bfdd939a805cabfe64f3f3238ca45375fd1f8 (diff) | |
| download | notenoughupdates-df945f9d58d4f40f9adc4727c4f8d548b21fa4b0.tar.gz notenoughupdates-df945f9d58d4f40f9adc4727c4f8d548b21fa4b0.tar.bz2 notenoughupdates-df945f9d58d4f40f9adc4727c4f8d548b21fa4b0.zip | |
Museum: Display hydrated items for items taken outside of the repo (#621)
Co-authored-by: Lulonaut <lulonaut@tutanota.de>
Diffstat (limited to 'src/main/kotlin/io/github/moulberry/notenoughupdates/util/KotlinStringUtils.kt')
| -rw-r--r-- | src/main/kotlin/io/github/moulberry/notenoughupdates/util/KotlinStringUtils.kt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/main/kotlin/io/github/moulberry/notenoughupdates/util/KotlinStringUtils.kt b/src/main/kotlin/io/github/moulberry/notenoughupdates/util/KotlinStringUtils.kt new file mode 100644 index 00000000..dc1e800c --- /dev/null +++ b/src/main/kotlin/io/github/moulberry/notenoughupdates/util/KotlinStringUtils.kt @@ -0,0 +1,24 @@ +/* + * Copyright (C) 2022 NotEnoughUpdates contributors + * + * This file is part of NotEnoughUpdates. + * + * NotEnoughUpdates is free software: you can redistribute it + * and/or modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation, either + * version 3 of the License, or (at your option) any later version. + * + * NotEnoughUpdates is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with NotEnoughUpdates. If not, see <https://www.gnu.org/licenses/>. + */ + +package io.github.moulberry.notenoughupdates.util + +import net.minecraft.util.StringUtils + +fun String.stripControlCodes(): String = StringUtils.stripControlCodes(this) |
