get rid of some empty lines in the generated asm

This commit is contained in:
Irmen de Jong
2025-01-05 19:28:39 +01:00
parent 3b5cda85ff
commit f0e8ff0326
8 changed files with 60 additions and 157 deletions
+1 -1
View File
@@ -100,7 +100,7 @@ class DataType private constructor(val base: BaseDataType, val sub: BaseDataType
if(actualElementDt.isNumericOrBool && actualElementDt != BaseDataType.LONG)
DataType(BaseDataType.ARRAY, actualElementDt)
else
throw NoSuchElementException("invalid element dt "+elementDt)
throw NoSuchElementException("invalid element dt $elementDt")
}
}
}