Skip to content

Commit

Permalink
Revert "cleanup"
Browse files Browse the repository at this point in the history
This reverts commit e48a175.
  • Loading branch information
larsgrefer committed Oct 10, 2023
1 parent e48a175 commit 3297ab4
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
import de.larsgrefer.sass.embedded.importer.FileImporter;
import de.larsgrefer.sass.embedded.importer.WebjarsImporter;
import de.larsgrefer.sass.embedded.logging.Slf4jLoggingHandler;
import lombok.Getter;
import lombok.Setter;
import org.gradle.api.GradleException;
import org.gradle.api.UncheckedIOException;
import org.gradle.api.file.ConfigurableFileCollection;
Expand All @@ -36,6 +38,8 @@
import java.util.Base64;
import java.util.LinkedHashSet;

@Getter
@Setter
@CacheableTask
public abstract class SassCompile extends SourceTask {

Expand Down Expand Up @@ -191,7 +195,7 @@ public void visitFile(@Nonnull FileVisitDetails fileVisitDetails) {
* Output style for the generated css code.
*/
@Input
public abstract Property<OutputStyle> getOutputStyle();
private final Property<OutputStyle> outputStyle = getProject().getObjects().property(OutputStyle.class);

/**
* Embed include contents in maps.
Expand Down

0 comments on commit 3297ab4

Please sign in to comment.