[cleanup] Remove redundant null-safe call

Signed-off-by: Dominika <sokolov.dominika@gmail.com>
This commit is contained in:
Dominika 2021-01-08 17:42:15 -05:00
parent 8bdbc4744a
commit ad034fb9fb
No known key found for this signature in database
GPG Key ID: B4A5A6DCA70F861F
1 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,7 @@ class ESPRenderer {
var fullOutline = false
val size: Int
get() = toRender?.size
get() = toRender.size
fun add(entity: Entity, color: ColorHolder) {
add(entity, color, GeometryMasks.Quad.ALL)
@ -127,4 +127,5 @@ class ESPRenderer {
private enum class Type {
FILLED, OUTLINE, TRACER
}
}