Skip to content

Commit

Permalink
outputDirectoryのgetter/setterを作成
Browse files Browse the repository at this point in the history
  • Loading branch information
m-tanigt committed Jul 26, 2021
1 parent 279610b commit 51b7541
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/java/jtdog/SniffTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -292,4 +292,12 @@ public void setDetectStaticSmells(boolean detectStaticSmells) {
this.detectStaticSmells = detectStaticSmells;
}

public String getOutputDirectory() {
return outputDirectory;
}

public void setOutputDirectory(String outputDirectory) {
this.outputDirectory = outputDirectory;
}

}

0 comments on commit 51b7541

Please sign in to comment.