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

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


The following commit(s) were added to refs/heads/master by this push:
     new c6e23a6  fixing sonarqube issue - static members should be accessed 
statically
     new 5740bd3  Merge pull request #73 from mookkiah/sonar_issue
c6e23a6 is described below

commit c6e23a6e38639bc902f7108658ddc9173126de55
Author: Mahendran Mookkiah <[email protected]>
AuthorDate: Sat Jan 2 01:07:33 2021 +0000

    fixing sonarqube issue - static members should be accessed statically
---
 .../weblogger/business/plugins/entry/ConvertLineBreaksPlugin.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/app/src/main/java/org/apache/roller/weblogger/business/plugins/entry/ConvertLineBreaksPlugin.java
 
b/app/src/main/java/org/apache/roller/weblogger/business/plugins/entry/ConvertLineBreaksPlugin.java
index d8f3a1d..b1323be 100644
--- 
a/app/src/main/java/org/apache/roller/weblogger/business/plugins/entry/ConvertLineBreaksPlugin.java
+++ 
b/app/src/main/java/org/apache/roller/weblogger/business/plugins/entry/ConvertLineBreaksPlugin.java
@@ -51,7 +51,7 @@ public class ConvertLineBreaksPlugin implements 
WeblogEntryPlugin {
     
     
     public ConvertLineBreaksPlugin() {
-        mLogger.debug("Instantiating ConvertLineBreaksPlugin v"+this.VERSION);
+        mLogger.debug("Instantiating ConvertLineBreaksPlugin v"+ 
ConvertLineBreaksPlugin.VERSION);
     }
     
     

Reply via email to