> + *
> + * Unless required by applicable law or agreed to in writing, software
> + * distributed under the License is distributed on an "AS IS" BASIS,
> + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
> + * See the License for the specific language governing permissions and
> + * limitations under the License.
> + */
> +package org.jclouds.jdbc.config;
> +
> +import com.google.inject.Inject;
> +import com.google.inject.persist.PersistService;
> +
> +public class JPAInitializer {
> +
> + @Inject
> + public JPAInitializer(PersistService service) {
Injection constructors should be package private. Remove the `public` modifier.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/173/files#r29934076