Skip to content

Commit 8b0d61f

Browse files
committed
[1장_이지훈] 1장 패키지 변경
1 parent 39644a1 commit 8b0d61f

File tree

11 files changed

+8
-11
lines changed

11 files changed

+8
-11
lines changed

src/main/kotlin/chapter01/1장_이지훈.md

Whitespace-only changes.

src/main/kotlin/ezhoon/InitClass.kt

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/main/kotlin/chapter01/Audience.kt renamed to src/main/kotlin/ezhoon/chapter01/Audience.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package chapter01
1+
package ezhoon.chapter01
22

33
/**
44
* 관람객 클래스

src/main/kotlin/chapter01/Bag.kt renamed to src/main/kotlin/ezhoon/chapter01/Bag.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package chapter01
1+
package ezhoon.chapter01
22

33
/**
44
* 관람객이 소지품을 보관할 클래스

src/main/kotlin/chapter01/Invitation.kt renamed to src/main/kotlin/ezhoon/chapter01/Invitation.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package chapter01
1+
package ezhoon.chapter01
22

33
import java.time.LocalDateTime
44

src/main/kotlin/chapter01/Theater.kt renamed to src/main/kotlin/ezhoon/chapter01/Theater.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package chapter01
1+
package ezhoon.chapter01
22

33
class Theater(
44
private val ticketSeller: TicketSeller

src/main/kotlin/chapter01/Ticket.kt renamed to src/main/kotlin/ezhoon/chapter01/Ticket.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package chapter01
1+
package ezhoon.chapter01
22

33
/**
44
* 티켓 클래스

src/main/kotlin/chapter01/TicketOffice.kt renamed to src/main/kotlin/ezhoon/chapter01/TicketOffice.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package chapter01
1+
package ezhoon.chapter01
22

33
/**
44
* 티켓 판매

src/main/kotlin/chapter01/TicketSeller.kt renamed to src/main/kotlin/ezhoon/chapter01/TicketSeller.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package chapter01
1+
package ezhoon.chapter01
22

33
data class TicketSeller(
44
private val ticketOffice: TicketOffice

src/test/kotlin/chapter01/AudienceTest.kt renamed to src/test/kotlin/ezhoon/chapter01/AudienceTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package chapter01
22

3+
import ezhoon.chapter01.*
34
import org.junit.jupiter.api.BeforeEach
45
import org.junit.jupiter.api.DisplayName
56
import org.junit.jupiter.api.Test

0 commit comments

Comments
 (0)