Skip to content

Commit

Permalink
style: lint 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
taipaise committed Nov 12, 2024
1 parent 1581284 commit feeff20
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Domain/Domain/Sources/Entity/WhiteboardObject.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ public class WhiteboardObject {
public let id: UUID
public var position: CGPoint
public var size: CGSize

public init(
id: UUID,
position: CGPoint,
position: CGPoint,
size: CGSize
) {
self.id = id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class WhiteboardObjectView: UIView {
let frame = CGRect(origin: whiteboardObject.position, size: whiteboardObject.size)
super.init(frame: frame)
}

required init?(coder: NSCoder) {
super.init(coder: coder)
}
Expand Down

0 comments on commit feeff20

Please sign in to comment.