Skip to content

Commit

Permalink
Update Contraband-generated sources
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n committed Nov 30, 2024
1 parent f53a5cb commit e27c3f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions io/src/main/contraband-scala/sbt/io/CopyOptions.scala
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]].
* This code is generated using [[https://www.scala-sbt.org/contraband]].
*/

// DO NOT EDIT MANUALLY
Expand Down Expand Up @@ -30,7 +30,7 @@ final class CopyOptions private (
override def toString: String = {
"CopyOptions(" + overwrite + ", " + preserveLastModified + ", " + preserveExecutable + ")"
}
private[this] def copy(overwrite: Boolean = overwrite, preserveLastModified: Boolean = preserveLastModified, preserveExecutable: Boolean = preserveExecutable): CopyOptions = {
private def copy(overwrite: Boolean = overwrite, preserveLastModified: Boolean = preserveLastModified, preserveExecutable: Boolean = preserveExecutable): CopyOptions = {
new CopyOptions(overwrite, preserveLastModified, preserveExecutable)
}
def withOverwrite(overwrite: Boolean): CopyOptions = {
Expand Down

0 comments on commit e27c3f6

Please sign in to comment.