Skip to content

Commit

Permalink
Optimize build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
layou233 committed Jan 3, 2021
1 parent 1ad2f3e commit fc24fab
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ repositories {

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
//implementation "commons-httpclient:commons-httpclient:3.1"
compile "org.jetbrains.kotlin:kotlin-stdlib"
//compile "commons-httpclient:commons-httpclient:3.1"
testImplementation "org.jetbrains.kotlin:kotlin-script-runtime:1.4.10"
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/lau/NovelDL/NovelHandler.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fun readNovel(plain: String): String {
// Process """s
novel = Regex(""").replace(novel, "\"")

// Process "</br>"s
// Process "<br/?>"s
novel = Regex("<br/?>").replace(novel, "\n")

// Remove "<a href=url></a>"s
Expand Down

0 comments on commit fc24fab

Please sign in to comment.