Skip to content

Commit 1eb9ff4

Browse files
committed
Make optimizeGenerateFeatures() protected
Signed-off-by: Paul Gooderham <turkeyonmarblerye@gmail.com>
1 parent 22403f6 commit 1eb9ff4

File tree

1 file changed

+2
-2
lines changed
  • src/main/java/io/openliberty/tools/common/plugins/util

1 file changed

+2
-2
lines changed

src/main/java/io/openliberty/tools/common/plugins/util/DevUtil.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2755,15 +2755,15 @@ protected void setFeatureGeneration(boolean generateFeatures) {
27552755
logFeatureGenerationStatus();
27562756
}
27572757

2758-
private boolean optimizeGenerateFeatures(boolean useTmpDir) {
2758+
protected boolean optimizeGenerateFeatures(boolean useTmpDir) {
27592759
debug("Entering optimizeGenerateFeatures(boolean)");
27602760
return optimizeGenerateFeatures(useTmpDir, false);
27612761
}
27622762

27632763
/**
27642764
* Generate features using all classes and only user specified features.
27652765
*/
2766-
private boolean optimizeGenerateFeatures(boolean useTmpDirOut, boolean useTmpDirIn) {
2766+
protected boolean optimizeGenerateFeatures(boolean useTmpDirOut, boolean useTmpDirIn) {
27672767
debug("Generating optimized features list...use temp directory for output=" + useTmpDirOut + " use temp directory for input=" + useTmpDirIn);
27682768
// scan all class files and provide only user specified features
27692769
boolean generatedFeatures = libertyGenerateFeatures(null, true, generateToSrc, useTmpDirOut, useTmpDirIn);

0 commit comments

Comments
 (0)