You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2020/06/23 11:08:44 UTC

[tomcat] branch master updated: Fix IDE nags

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 8e86977  Fix IDE nags
8e86977 is described below

commit 8e86977b901698c2c67dbaf83f4dba5d7f2c1e02
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Tue Jun 23 12:08:20 2020 +0100

    Fix IDE nags
---
 java/org/apache/catalina/startup/Catalina.java                 | 4 ++--
 java/org/apache/catalina/startup/SetAllPropertiesRule.java     | 1 +
 java/org/apache/catalina/startup/SetContextPropertiesRule.java | 1 +
 3 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/java/org/apache/catalina/startup/Catalina.java b/java/org/apache/catalina/startup/Catalina.java
index 5280d32..a0955c1 100644
--- a/java/org/apache/catalina/startup/Catalina.java
+++ b/java/org/apache/catalina/startup/Catalina.java
@@ -720,7 +720,7 @@ public class Catalina {
         }
 
         if(log.isInfoEnabled()) {
-            log.info(sm.getString("catalina.init", TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - t1)));
+            log.info(sm.getString("catalina.init", Long.toString(TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - t1))));
         }
     }
 
@@ -770,7 +770,7 @@ public class Catalina {
         }
 
         if (log.isInfoEnabled()) {
-            log.info(sm.getString("catalina.startup", TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - t1)));
+            log.info(sm.getString("catalina.startup", Long.toString(TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - t1))));
         }
 
         // Register shutdown hook
diff --git a/java/org/apache/catalina/startup/SetAllPropertiesRule.java b/java/org/apache/catalina/startup/SetAllPropertiesRule.java
index 93d59e9..7288fe6 100644
--- a/java/org/apache/catalina/startup/SetAllPropertiesRule.java
+++ b/java/org/apache/catalina/startup/SetAllPropertiesRule.java
@@ -26,6 +26,7 @@ import org.apache.tomcat.util.digester.SetPropertiesRule;
  * @author Remy Maucherat
  * @deprecated This will be removed in Tomcat 10
  */
+@Deprecated
 public class SetAllPropertiesRule extends SetPropertiesRule {
 
 
diff --git a/java/org/apache/catalina/startup/SetContextPropertiesRule.java b/java/org/apache/catalina/startup/SetContextPropertiesRule.java
index fda8742..36ad6a9 100644
--- a/java/org/apache/catalina/startup/SetContextPropertiesRule.java
+++ b/java/org/apache/catalina/startup/SetContextPropertiesRule.java
@@ -27,6 +27,7 @@ import org.apache.tomcat.util.digester.SetPropertiesRule;
  * @author Remy Maucherat
  * @deprecated This will be removed in Tomcat 10
  */
+@Deprecated
 public class SetContextPropertiesRule extends SetPropertiesRule {
 
 


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


Re: [tomcat] branch master updated: Fix IDE nags

Posted by Mark Thomas <ma...@apache.org>.
On 23/06/2020 14:02, Rémy Maucherat wrote:

<snip/>

> Thanks, I always mess up that one ...

No problem. I only notice it because my IDE nags me.

Mark

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


Re: [tomcat] branch master updated: Fix IDE nags

Posted by Rémy Maucherat <re...@apache.org>.
On Tue, Jun 23, 2020 at 1:08 PM <ma...@apache.org> wrote:

> This is an automated email from the ASF dual-hosted git repository.
>
> markt pushed a commit to branch master
> in repository https://gitbox.apache.org/repos/asf/tomcat.git
>
>
> The following commit(s) were added to refs/heads/master by this push:
>      new 8e86977  Fix IDE nags
> 8e86977 is described below
>
> commit 8e86977b901698c2c67dbaf83f4dba5d7f2c1e02
> Author: Mark Thomas <ma...@apache.org>
> AuthorDate: Tue Jun 23 12:08:20 2020 +0100
>
>     Fix IDE nags
> ---
>  java/org/apache/catalina/startup/Catalina.java                 | 4 ++--
>  java/org/apache/catalina/startup/SetAllPropertiesRule.java     | 1 +
>  java/org/apache/catalina/startup/SetContextPropertiesRule.java | 1 +
>  3 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/java/org/apache/catalina/startup/Catalina.java
> b/java/org/apache/catalina/startup/Catalina.java
> index 5280d32..a0955c1 100644
> --- a/java/org/apache/catalina/startup/Catalina.java
> +++ b/java/org/apache/catalina/startup/Catalina.java
> @@ -720,7 +720,7 @@ public class Catalina {
>          }
>
>          if(log.isInfoEnabled()) {
> -            log.info(sm.getString("catalina.init",
> TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - t1)));
> +            log.info(sm.getString("catalina.init",
> Long.toString(TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - t1))));
>          }
>      }
>
> @@ -770,7 +770,7 @@ public class Catalina {
>          }
>
>          if (log.isInfoEnabled()) {
> -            log.info(sm.getString("catalina.startup",
> TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - t1)));
> +            log.info(sm.getString("catalina.startup",
> Long.toString(TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - t1))));
>          }
>
>          // Register shutdown hook
> diff --git a/java/org/apache/catalina/startup/SetAllPropertiesRule.java
> b/java/org/apache/catalina/startup/SetAllPropertiesRule.java
> index 93d59e9..7288fe6 100644
> --- a/java/org/apache/catalina/startup/SetAllPropertiesRule.java
> +++ b/java/org/apache/catalina/startup/SetAllPropertiesRule.java
> @@ -26,6 +26,7 @@ import org.apache.tomcat.util.digester.SetPropertiesRule;
>   * @author Remy Maucherat
>   * @deprecated This will be removed in Tomcat 10
>   */
> +@Deprecated
>  public class SetAllPropertiesRule extends SetPropertiesRule {
>

Thanks, I always mess up that one ...

Rémy


>
>
> diff --git
> a/java/org/apache/catalina/startup/SetContextPropertiesRule.java
> b/java/org/apache/catalina/startup/SetContextPropertiesRule.java
> index fda8742..36ad6a9 100644
> --- a/java/org/apache/catalina/startup/SetContextPropertiesRule.java
> +++ b/java/org/apache/catalina/startup/SetContextPropertiesRule.java
> @@ -27,6 +27,7 @@ import org.apache.tomcat.util.digester.SetPropertiesRule;
>   * @author Remy Maucherat
>   * @deprecated This will be removed in Tomcat 10
>   */
> +@Deprecated
>  public class SetContextPropertiesRule extends SetPropertiesRule {
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> For additional commands, e-mail: dev-help@tomcat.apache.org
>
>