This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new bdf0dcc Camel-google-bigquery - BindToRegistry method must be public bdf0dcc is described below commit bdf0dcc7dbfc3132c4ee6c8c27f08bb2802de224 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Thu Jul 25 09:24:51 2019 +0200 Camel-google-bigquery - BindToRegistry method must be public --- .../component/google/bigquery/integration/BigQueryTestSupport.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-google-bigquery/src/test/java/org/apache/camel/component/google/bigquery/integration/BigQueryTestSupport.java b/components/camel-google-bigquery/src/test/java/org/apache/camel/component/google/bigquery/integration/BigQueryTestSupport.java index d2da69b..6e0d0f0 100644 --- a/components/camel-google-bigquery/src/test/java/org/apache/camel/component/google/bigquery/integration/BigQueryTestSupport.java +++ b/components/camel-google-bigquery/src/test/java/org/apache/camel/component/google/bigquery/integration/BigQueryTestSupport.java @@ -94,7 +94,7 @@ public class BigQueryTestSupport extends CamelTestSupport { } @BindToRegistry("prop") - protected Properties loadRegProperties() throws Exception { + public Properties loadRegProperties() throws Exception { return loadProperties(); }