You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jackrabbit.apache.org by "Marcel Reutegger (JIRA)" <ji...@apache.org> on 2009/07/15 17:42:14 UTC

[jira] Created: (JCR-2214) Avoid string concatenation in AbstractBundlePersistenceManager

Avoid string concatenation in AbstractBundlePersistenceManager
--------------------------------------------------------------

                 Key: JCR-2214
                 URL: https://issues.apache.org/jira/browse/JCR-2214
             Project: Jackrabbit Content Repository
          Issue Type: Improvement
          Components: jackrabbit-core
            Reporter: Marcel Reutegger
            Priority: Minor


The following line:

        log.debug("stored bundle " + bundle.getId());

should be changed to:

        log.debug("stored bundle {}", bundle.getId());


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (JCR-2214) Avoid string concatenation in AbstractBundlePersistenceManager

Posted by "Jukka Zitting (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/JCR-2214?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jukka Zitting updated JCR-2214:
-------------------------------

    Fix Version/s:     (was: 2.0.0)
                   1.6.0

Merged to the 1.x branch in revision 801215.

> Avoid string concatenation in AbstractBundlePersistenceManager
> --------------------------------------------------------------
>
>                 Key: JCR-2214
>                 URL: https://issues.apache.org/jira/browse/JCR-2214
>             Project: Jackrabbit Content Repository
>          Issue Type: Improvement
>          Components: jackrabbit-core
>            Reporter: Marcel Reutegger
>            Priority: Minor
>             Fix For: 1.6.0
>
>
> The following line:
>         log.debug("stored bundle " + bundle.getId());
> should be changed to:
>         log.debug("stored bundle {}", bundle.getId());

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (JCR-2214) Avoid string concatenation in AbstractBundlePersistenceManager

Posted by "Marcel Reutegger (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/JCR-2214?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Marcel Reutegger resolved JCR-2214.
-----------------------------------

       Resolution: Fixed
    Fix Version/s: 2.0.0

Changed in revision: 794304

> Avoid string concatenation in AbstractBundlePersistenceManager
> --------------------------------------------------------------
>
>                 Key: JCR-2214
>                 URL: https://issues.apache.org/jira/browse/JCR-2214
>             Project: Jackrabbit Content Repository
>          Issue Type: Improvement
>          Components: jackrabbit-core
>            Reporter: Marcel Reutegger
>            Priority: Minor
>             Fix For: 2.0.0
>
>
> The following line:
>         log.debug("stored bundle " + bundle.getId());
> should be changed to:
>         log.debug("stored bundle {}", bundle.getId());

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.