File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
src/main/java/org/zaproxy/addon/automation Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55
66## Unreleased
77### Changed
8+ - Maintenance changes.
89- Make the "pass" output of Monitor Tests consistent with the "fail" output.
910
1011### Fixed
Original file line number Diff line number Diff line change @@ -494,6 +494,17 @@ public AutomationPlan loadPlan(File f) throws IOException {
494494 return new AutomationPlan (this , f , false );
495495 }
496496
497+ /**
498+ * Loads a plan from the given input stream.
499+ *
500+ * @param in the input stream with the plan in YAML format.
501+ * @return the plan.
502+ * @since 0.4.0
503+ */
504+ public AutomationPlan loadPlan (InputStream in ) {
505+ return loadPlan (in , false );
506+ }
507+
497508 public AutomationPlan loadPlan (InputStream in , boolean quiet ) {
498509 return new AutomationPlan (this , in , quiet );
499510 }
You can’t perform that action at this time.
0 commit comments