Skip to content

Commit

Permalink
Add default implementation of getObjectsForSwaggerExamples
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherSchultz committed Feb 3, 2023
1 parent ed40e34 commit a3c5368
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion server/src/com/mirth/connect/plugins/ServicePlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,7 @@ public interface ServicePlugin extends ServerPlugin {
*
* @return
*/
public Map<String, Object> getObjectsForSwaggerExamples();
public default Map<String, Object> getObjectsForSwaggerExamples() {
return null;
}
}

0 comments on commit a3c5368

Please sign in to comment.