Fix a typo 00/101800/1
authorRobert Varga <robert.varga@pantheon.tech>
Mon, 11 Jul 2022 19:13:52 +0000 (21:13 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Mon, 11 Jul 2022 19:13:52 +0000 (21:13 +0200)
'implementation' is spelled incorrectly.

Change-Id: I3f216b1758fff9b71ee73137f5de849f479116d0
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
aaa-idm-store-h2/src/main/java/org/opendaylight/aaa/datastore/h2/IdmLightSimpleConnectionProvider.java

index 6b71591b819828b066a9c2e0fe84e40b68c07396..8aa501b75c5bcec9f20a65ba415ce38be5b4ca22 100644 (file)
@@ -20,7 +20,7 @@ import org.h2.jdbcx.JdbcConnectionPool;
 public class IdmLightSimpleConnectionProvider implements ConnectionProvider {
     private final IdmLightConfig config;
 
-    public IdmLightSimpleConnectionProvider(IdmLightConfig config) {
+    public IdmLightSimpleConnectionProvider(final IdmLightConfig config) {
         new org.h2.Driver();
         this.config = config;
     }
@@ -29,7 +29,7 @@ public class IdmLightSimpleConnectionProvider implements ConnectionProvider {
     /**
      * {@inheritDoc}
      *
-     * @implSpec This implemenation always opens a new connection.
+     * @implSpec This implementation always opens a new connection.
      *
      *     FIXME: Integrate a {@link JdbcConnectionPool}, as {@link #config} is guaranteed to be constant. This is
      *            needlessly heavy, as we are locating the driver.