Skip to content

Commit e1cca81

Browse files
committed
Replace all double quotes with empty strings
- Most notably to convert "The Catch" to TheCatch
1 parent fefbed0 commit e1cca81

File tree

1 file changed

+1
-1
lines changed
  • android/app/src/main/java/com/steve1316/genshin_inventory_scanner_android/bot

1 file changed

+1
-1
lines changed

android/app/src/main/java/com/steve1316/genshin_inventory_scanner_android/bot/Scan.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ class Scan(private val game: Game) {
170170
*/
171171
private fun toPascalCase(str: String): String {
172172
val cleanedString = str.replace("'", "").replace("", "").replace("-", " ").replace("(", "")
173-
.replace(")", "").replace(":", "").replace("\n", " ").replace("", "\"")
173+
.replace(")", "").replace(":", "").replace("\n", " ").replace("", "").replace("\"", "")
174174
val split = cleanedString.split(" ")
175175
val result = arrayListOf<String>()
176176
split.forEach { word ->

0 commit comments

Comments
 (0)