Skip to content

Commit

Permalink
Implementation new flag in Environment adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
kniazkov committed Dec 7, 2023
1 parent 6393da2 commit 9edbb8e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/cqfn/astranaut/Common.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public final class Common {
/**
* The Astranaut version.
*/
public static final String VERSION = "0.2.18";
public static final String VERSION = "0.2.19";

/**
* Private constructor.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,9 @@ public List<TaggedChild> getTags(final String type) {
public Set<String> getImports(final String type) {
return this.analyzer.getImports(type, this.language);
}

@Override
public boolean whetherToAddGeneratorVersion() {
return this.base.whetherToAddGeneratorVersion();
}
}

0 comments on commit 9edbb8e

Please sign in to comment.