Skip to content

Commit f1776a5

Browse files
committed
use direction entries rather than empty set for default PreProcessingInfo. Missed that when converting PreProcessingInfo to an interface
1 parent 624e9ca commit f1776a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/main/kotlin/com/lambda/interaction/construction/processing/PreProcessingInfo.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ interface PreProcessingInfo {
7373
val DEFAULT = object : PreProcessingInfo {
7474
override val surfaceScan = SurfaceScan.DEFAULT
7575
override val ignore = setOf<Property<*>>()
76-
override val sides = setOf<Direction>()
76+
override val sides = Direction.entries.toSet()
7777
override val shouldBeOmitted = false
7878
}
7979
}

0 commit comments

Comments
 (0)