Skip to content

Commit b78b524

Browse files
committed
Rename bodyWithoutRuby to bodyWithoutHtml
1 parent b86a07d commit b78b524

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<dependency>
2222
<groupId>io.github.nhk-news-web-easy</groupId>
2323
<artifactId>nhk-easy-entity</artifactId>
24-
<version>1.0.5</version>
24+
<version>1.0.6</version>
2525
</dependency>
2626
<dependency>
2727
<groupId>org.jetbrains.kotlin</groupId>

src/main/kotlin/nhk/controller/api/NewsController.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class NewsController : BaseController() {
4141
dto.outline = news.outline
4242
dto.outlineWithRuby = news.outlineWithRuby
4343
dto.body = news.body
44-
dto.bodyWithoutRuby = news.bodyWithoutRuby
44+
dto.bodyWithoutHtml = news.bodyWithoutHtml
4545
dto.url = news.url
4646
dto.m3u8Url = news.m3u8Url
4747
dto.imageUrl = news.imageUrl

src/main/kotlin/nhk/dto/NewsDto.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class NewsDto {
1515

1616
var body = ""
1717

18-
var bodyWithoutRuby: String? = ""
18+
var bodyWithoutHtml: String? = ""
1919

2020
var url = ""
2121

0 commit comments

Comments
 (0)