Skip to content

Commit 36ff3ef

Browse files
committed
style(#331) - ktlintFormat 적용
1 parent 9c53daf commit 36ff3ef

File tree

1 file changed

+2
-6
lines changed
  • AOS/app/src/main/java/boostcamp/and07/mindsync/ui/view

1 file changed

+2
-6
lines changed

AOS/app/src/main/java/boostcamp/and07/mindsync/ui/view/NodeView.kt

+2-6
Original file line numberDiff line numberDiff line change
@@ -257,12 +257,8 @@ class NodeView(
257257
)
258258
} else {
259259
return (
260-
x in (node.path.centerX - node.path.radius).toPx(context)..(node.path.centerX + node.path.radius).toPx(
261-
context,
262-
) &&
263-
y in (node.path.centerY - node.path.radius).toPx(context)..(node.path.centerY + node.path.radius).toPx(
264-
context,
265-
)
260+
x in (node.path.centerX - node.path.radius).toPx(context)..(node.path.centerX + node.path.radius).toPx(context) &&
261+
y in (node.path.centerY - node.path.radius).toPx(context)..(node.path.centerY + node.path.radius).toPx(context)
266262
)
267263
}
268264
}

0 commit comments

Comments
 (0)