Fix detekt issue

This commit is contained in:
Benoit Marty 2023-06-23 23:00:00 +02:00
parent ea424f29fb
commit 2c57453efd
3 changed files with 11 additions and 4 deletions

View File

@ -8,7 +8,8 @@ import java.util.Locale
*/
class FieldNameFormatter {
@JvmOverloads fun format(fieldName: String?, locale: Locale = Locale.US): String {
@JvmOverloads
fun format(fieldName: String?, locale: Locale = Locale.US): String {
if (fieldName == null || fieldName == "") {
return ""
}
@ -35,7 +36,11 @@ class FieldNameFormatter {
currentCodepoint = normalizedFieldName.codePointAt(offset)
if (previousCodepoint != null) {
if (Character.isUpperCase(currentCodepoint) && !Character.isUpperCase(previousCodepoint) && previousCodepoint === 'm'.code as Int? && result.length == 1) {
if (Character.isUpperCase(currentCodepoint) &&
!Character.isUpperCase(previousCodepoint) &&
previousCodepoint === 'm'.code as Int? &&
result.length == 1
) {
// Hungarian notation starting with: mX
result.delete(0, 1)
result.appendCodePoint(currentCodepoint)
@ -51,7 +56,9 @@ class FieldNameFormatter {
} else if (currentCodepoint === '-'.code as Int? || currentCodepoint === '_'.code as Int?) {
// Word-separator: x-x or x_x
result.append("_")
} else if (Character.isUpperCase(currentCodepoint) && !Character.isUpperCase(previousCodepoint) && Character.isLetterOrDigit(previousCodepoint)) {
} else if (Character.isUpperCase(currentCodepoint) && !Character.isUpperCase(previousCodepoint) && Character.isLetterOrDigit(
previousCodepoint
)) {
// camelCase: xX
result.append("_")
result.appendCodePoint(currentCodepoint)

View File

@ -62,7 +62,7 @@ class FileGenerator(private val filer: Filer) {
javaFile.writeTo(filer)
return true
} catch (e: IOException) {
e.printStackTrace()
// e.printStackTrace()
return false
}
}