Skip to content

Commit

Permalink
Some functions renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoscgdev committed May 24, 2020
1 parent 930d68d commit e7161ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions licenser/src/main/java/com/marcoscg/licenser/Licenser.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ open class Licenser {
private var noticeTitle = "Notices for files:"
private var backgroundColor = -1

fun setLibrary(library: Library): Licenser? {
open fun setLibrary(library: Library): Licenser? {
if (libraries.containsKey(library.license).not()) {
libraries[library.license] = ArrayList()
}
Expand All @@ -30,12 +30,12 @@ open class Licenser {
return this
}

fun setCustomNoticeTitle(noticeTitle: String): Licenser? {
open fun setCustomNoticeTitle(noticeTitle: String): Licenser? {
this.noticeTitle = noticeTitle
return this
}

fun setBackgroundColor(backgroundColor: Int): Licenser? {
open fun setBackgroundColor(backgroundColor: Int): Licenser? {
this.backgroundColor = backgroundColor
return this
}
Expand Down

0 comments on commit e7161ce

Please sign in to comment.