Skip to content

Commit

Permalink
polish
Browse files Browse the repository at this point in the history
  • Loading branch information
larsgrefer committed Aug 18, 2023
1 parent 50b5a42 commit 8c76d97
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

import javax.inject.Inject;

@Getter
public abstract class MkDocs extends DefaultTask {

@Inject
Expand All @@ -26,13 +25,13 @@ public abstract class MkDocs extends DefaultTask {
* Silence warnings.
*/
@Console
private final Property<Boolean> quiet = getProject().getObjects().property(Boolean.class);
public abstract Property<Boolean> getQuiet();

/**
* Enable verbose output.
*/
@Console
private final Property<Boolean> verbose = getProject().getObjects().property(Boolean.class);
public abstract Property<Boolean> getVerbose();

protected MkDocs(String command) {
this.command = command;
Expand Down

0 comments on commit 8c76d97

Please sign in to comment.