Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The project is very much Work In Progress and will be published on maven central

# Release Notes
BOAT is still under development and subject to change.
## 0.14.11
## 0.14.12
* *Boat Scaffold*
* References to /examples/foo now are also dereferenced
## 0.14.10
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ private static void resolvePathsExamples(
*
*
* */
if (refParts[7].equals("examples")) {
if (refParts.length > 7 && refParts[7].equals("examples")) {
Example example = mediaType.getExamples().get(refParts[8]);
boatExample.setExample(example);
return;
Expand Down