From 871a4023a2e37c243dd28e1b2604ba369fe60b03 Mon Sep 17 00:00:00 2001 From: Thomas Risberg Date: Tue, 12 May 2009 20:21:05 +0000 Subject: [PATCH] fixed typo and JavaDocs git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1163 50f2f4bb-b051-0410-bef5-90022cba6387 --- .../datasource/embedded/H2EmbeddedDatabaseConfigurer.java | 6 +++--- .../datasource/embedded/HsqlEmbeddedDatabaseConfigurer.java | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/org.springframework.jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/H2EmbeddedDatabaseConfigurer.java b/org.springframework.jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/H2EmbeddedDatabaseConfigurer.java index 082edc7ce16..67262fe3c42 100644 --- a/org.springframework.jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/H2EmbeddedDatabaseConfigurer.java +++ b/org.springframework.jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/H2EmbeddedDatabaseConfigurer.java @@ -18,7 +18,7 @@ package org.springframework.jdbc.datasource.embedded; import org.springframework.util.ClassUtils; /** - * Initializes a HSQL embedded database instance. + * Initializes a H2 embedded database instance. * Call {@link #getInstance()} to get the singleton instance of this class. * * @author Oliver Gierke */ @@ -27,9 +27,9 @@ final class H2EmbeddedDatabaseConfigurer extends AbstractEmbeddedDatabaseConfigu private static H2EmbeddedDatabaseConfigurer INSTANCE; /** - * Get the singleton {@link HsqlEmbeddedDatabaseConfigurer} instance. + * Get the singleton {@link H2EmbeddedDatabaseConfigurer} instance. * @return the configurer - * @throws ClassNotFoundException if HSQL is not on the classpath + * @throws ClassNotFoundException if H2 is not on the classpath */ public static synchronized H2EmbeddedDatabaseConfigurer getInstance() throws ClassNotFoundException { if (INSTANCE == null) { diff --git a/org.springframework.jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/HsqlEmbeddedDatabaseConfigurer.java b/org.springframework.jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/HsqlEmbeddedDatabaseConfigurer.java index 3ee5146e667..df69bc718ea 100644 --- a/org.springframework.jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/HsqlEmbeddedDatabaseConfigurer.java +++ b/org.springframework.jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/HsqlEmbeddedDatabaseConfigurer.java @@ -21,7 +21,7 @@ import org.springframework.util.ClassUtils; * Initializes a HSQL embedded database instance. * Call {@link #getInstance()} to get the singleton instance of this class. * @author Keith Donald - * @authoe Oliver Gierke + * @author Oliver Gierke */ final class HsqlEmbeddedDatabaseConfigurer extends AbstractEmbeddedDatabaseConfigurer {