Skip to content

Commit

Permalink
Rename reader
Browse files Browse the repository at this point in the history
  • Loading branch information
turansky committed Sep 14, 2024
1 parent 6bffcdc commit 07e7fda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ internal class ReactLazyComponentPlugin : Plugin<Project> {
from(compileTask) {
include("**/*$LAZY_COMPONENT_SUFFIX")

filter(LazyComponentReader::class)
filter(ReactLazyComponentReader::class)

includeEmptyDirs = false
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import java.io.Reader
import java.io.StringReader
import java.io.StringWriter

internal class LazyComponentReader(
internal class ReactLazyComponentReader(
input: Reader,
) : FilterReader(lazyComponentTransformer(input))

Expand Down

0 comments on commit 07e7fda

Please sign in to comment.