You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2023/01/26 16:56:42 UTC

[maven-checkstyle-plugin] branch MCHECKSTYLE-426 updated (3ef091b -> 000fab6)

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

michaelo pushed a change to branch MCHECKSTYLE-426
in repository https://gitbox.apache.org/repos/asf/maven-checkstyle-plugin.git


 discard 3ef091b  [MCHECKSTYLE-426] Don't use Sink#figure()/Sink#figureCaption() since it distorts the output
     new 000fab6  [MCHECKSTYLE-426] Don't use Sink#figure()/Sink#figureCaption() since it distorts the output

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (3ef091b)
            \
             N -- N -- N   refs/heads/MCHECKSTYLE-426 (000fab6)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:


[maven-checkstyle-plugin] 01/01: [MCHECKSTYLE-426] Don't use Sink#figure()/Sink#figureCaption() since it distorts the output

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch MCHECKSTYLE-426
in repository https://gitbox.apache.org/repos/asf/maven-checkstyle-plugin.git

commit 000fab6067e5bca9dac69baa72e9c10e7afaead6
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Thu Jan 26 17:53:35 2023 +0100

    [MCHECKSTYLE-426] Don't use Sink#figure()/Sink#figureCaption() since it distorts the output
    
    This closes #106
---
 src/main/java/org/apache/maven/plugins/checkstyle/IconTool.java | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/src/main/java/org/apache/maven/plugins/checkstyle/IconTool.java b/src/main/java/org/apache/maven/plugins/checkstyle/IconTool.java
index 4092dca..c549c5f 100644
--- a/src/main/java/org/apache/maven/plugins/checkstyle/IconTool.java
+++ b/src/main/java/org/apache/maven/plugins/checkstyle/IconTool.java
@@ -57,9 +57,7 @@ public class IconTool
      */
     public void iconSeverity( String level )
     {
-        sink.figure();
         sink.figureGraphics( "images/icon_" + level + "_sml.gif" );
-        sink.figure_();
     }
 
     /**
@@ -70,9 +68,7 @@ public class IconTool
      */
     public void iconSeverity( String level, int textType )
     {
-        sink.figure();
         sink.figureGraphics( "images/icon_" + level + "_sml.gif" );
-        sink.figure_();
 
         if ( textType > 0 )
         {