You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juneau.apache.org by ja...@apache.org on 2020/01/02 19:17:14 UTC

[juneau] branch master updated: Fix build failure.

This is an automated email from the ASF dual-hosted git repository.

jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git


The following commit(s) were added to refs/heads/master by this push:
     new dcd9ffb  Fix build failure.
dcd9ffb is described below

commit dcd9ffb6d0465240b442c133214a5dfc4e378676
Author: JamesBognar <ja...@apache.org>
AuthorDate: Thu Jan 2 14:17:03 2020 -0500

    Fix build failure.
---
 .../main/java/org/apache/juneau/examples/rest/HelloWorldResource.java  | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/juneau-examples/juneau-examples-rest/src/main/java/org/apache/juneau/examples/rest/HelloWorldResource.java b/juneau-examples/juneau-examples-rest/src/main/java/org/apache/juneau/examples/rest/HelloWorldResource.java
index 86463c1..82ad529 100644
--- a/juneau-examples/juneau-examples-rest/src/main/java/org/apache/juneau/examples/rest/HelloWorldResource.java
+++ b/juneau-examples/juneau-examples-rest/src/main/java/org/apache/juneau/examples/rest/HelloWorldResource.java
@@ -55,4 +55,7 @@ public class HelloWorldResource implements BasicRestConfig {
 	public Swagger getOptions(RestRequest req) {
 		return req.getSwagger();
 	}
+
+	@Override
+	public void error() {}
 }