Skip to content

Commit

Permalink
Fix build.
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrtwhite committed Nov 29, 2024
1 parent 4a0dd69 commit d85bd9a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import coil3.annotation.Poko

@Deprecated(
message = "This use case is better fulfilled by ColorImage.",
replaceWith = ReplaceWith("ColorImage", ["coil3.test.ColorImage"]),
replaceWith = ReplaceWith("ColorImage", "coil3.test.ColorImage"),
level = DeprecationLevel.WARNING,
)
@Poko
Expand Down
2 changes: 1 addition & 1 deletion coil-test/src/commonMain/kotlin/coil3/test/FakeImage.kt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import coil3.test.ColorImage.Companion.Black
*/
@Deprecated(
message = "This use case is better fulfilled by ColorImage.",
replaceWith = ReplaceWith("ColorImage(color, width, height, size, shareable)", ["coil3.test.ColorImage"]),
replaceWith = ReplaceWith("ColorImage(color, width, height, size, shareable)", "coil3.test.ColorImage"),
level = DeprecationLevel.WARNING,
)
expect class FakeImage(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import org.jetbrains.skia.Rect

@Deprecated(
message = "This use case is better fulfilled by ColorImage.",
replaceWith = ReplaceWith("ColorImage(color, width, height, size, shareable)", ["coil3.test.ColorImage"]),
replaceWith = ReplaceWith("ColorImage(color, width, height, size, shareable)", "coil3.test.ColorImage"),
level = DeprecationLevel.WARNING,
)
@Poko
Expand Down

0 comments on commit d85bd9a

Please sign in to comment.