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

markt pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/9.0.x by this push:
     new 22d17a0  Remove unnecessary space characters
22d17a0 is described below

commit 22d17a00e0c4fe9673134c9c58d080a28fabbf67
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Tue Oct 6 10:33:09 2020 +0100

    Remove unnecessary space characters
---
 java/javax/annotation/Resource.java                |  2 +-
 .../javax/annotation/sql/DataSourceDefinition.java | 38 +++++++++++-----------
 2 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/java/javax/annotation/Resource.java 
b/java/javax/annotation/Resource.java
index 232ec56..9138652 100644
--- a/java/javax/annotation/Resource.java
+++ b/java/javax/annotation/Resource.java
@@ -46,7 +46,7 @@ public @interface Resource {
      * @return a String with the name of the resource
      */
     public String name() default "";
-    
+
     /**
      * Uses generics since Common Annotations 1.2.
      *
diff --git a/java/javax/annotation/sql/DataSourceDefinition.java 
b/java/javax/annotation/sql/DataSourceDefinition.java
index 9274283..3d4cd7e 100644
--- a/java/javax/annotation/sql/DataSourceDefinition.java
+++ b/java/javax/annotation/sql/DataSourceDefinition.java
@@ -27,95 +27,95 @@ import java.lang.annotation.Target;
 @Target(ElementType.TYPE)
 @Retention(RetentionPolicy.RUNTIME)
 public @interface DataSourceDefinition {
-    
+
     /**
      * @return the className
      */
     String className();
-    
+
     /**
      * @return the name
      */
     String name();
-    
+
     /**
      * @return the description
      */
     String description() default "";
-    
+
     /**
      * @return the url
      */
     String url() default "";
-    
+
     /**
      * @return the user
      */
     String user() default "";
-    
+
     /**
      * @return the password
      */
     String password() default "";
-    
+
     /**
      * @return database name
      */
     String databaseName() default "";
-    
+
     /**
      * @return the port number
      */
     int portNumber() default -1;
-    
+
     /**
      * @return the server name
      */
     String serverName() default "localhost";
-    
+
     /**
      * @return the isolation level
      */
     int isolationLevel() default -1;
-    
+
     /**
      * @return true if the data source is transactional
      */
     boolean transactional() default true;
-    
+
     /**
      * @return the initial pool size
      */
     int initialPoolSize() default -1;
-    
+
     /**
      * @return the max pool size
      */
     int maxPoolSize() default -1;
-    
+
     /**
      * @return the min pool size
      */
     int minPoolSize() default -1;
-    
+
     /**
      * @return the max idle time
      */
     int maxIdleTime() default -1;
-    
+
     /**
      * @return the max statements
      */
     int maxStatements() default -1;
-    
+
     /**
      * @return a String[] with the properties
      */
     String[] properties() default {};
-    
+
     /**
      * @return the login timeout
      */
     int loginTimeout() default 0;
-    
+
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to