Skip to content

Commit

Permalink
Merge pull request #41659 from Thevakumar-Luheerathan/fix-ballerina-l…
Browse files Browse the repository at this point in the history
…ang-iss-41360-master

[master] Enable offline resolution when there is no import change
  • Loading branch information
Thevakumar-Luheerathan authored Nov 9, 2023
2 parents 4f4b7fd + ae5102c commit aabcdac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public DocCommand() {

@CommandLine.Option(names = {"--offline"}, description = "Compiles offline without downloading " +
"dependencies.")
private boolean offline;
private Boolean offline;

@CommandLine.Option(names = "--old-parser", description = "Enable old parser.", hidden = true)
private boolean useOldParser;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public class ProfileCommand implements BLauncherCmd {

@CommandLine.Option(names = {"--offline"}, description = "Builds offline without downloading dependencies and " +
"then run.")
private boolean offline;
private Boolean offline;

@CommandLine.Option(names = "--debug", hidden = true)
private String debugPort;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public class RunCommand implements BLauncherCmd {

@CommandLine.Option(names = {"--offline"}, description = "Builds offline without downloading dependencies and " +
"then run.")
private boolean offline;
private Boolean offline;

@CommandLine.Option(names = "--debug", hidden = true)
private String debugPort;
Expand Down

0 comments on commit aabcdac

Please sign in to comment.