Skip to content

Commit 797cc6b

Browse files
committed
Fixes: Removes unnecessary parenthesis.
Removes unnecessary parenthesis from the SOUTH enum value. The parenthesis were causing a syntax error and are not required for enum values.
1 parent 68ec4eb commit 797cc6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package cc.modlabs.kpaper.world
22

33
enum class Direction {
4-
MIDDLE, NORTH, NORTH_EAST, EAST, SOUTH_EAST, SOUTH(), SOUTH_WEST, WEST, NORTH_WEST
4+
MIDDLE, NORTH, NORTH_EAST, EAST, SOUTH_EAST, SOUTH, SOUTH_WEST, WEST, NORTH_WEST
55
}

0 commit comments

Comments
 (0)