Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for uppercaseChar (0.09 seconds)

  1. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/FixProjectHealthTask.kt

                val projectName = match.groupValues[1]
                val parts = projectName.split(":").last().split("-")
                "projects.${parts.first()}${parts.drop(1).joinToString("") { it.replaceFirstChar { c -> c.uppercaseChar() } }}"
            }
        }
    
        private fun MutableMap<String, MutableList<String>>.addToMap(filePath: String, values: List<String>) {
            this.computeIfAbsent(filePath) { mutableListOf() }.addAll(values)
        }
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Mon Mar 03 06:57:08 GMT 2025
    - 6.2K bytes
    - Click Count (1)
Back to Top