You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2018/04/07 17:34:59 UTC

[maven-doxia] branch DOXIA-572 updated (3dfd388 -> b698613)

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

khmarbaise pushed a change to branch DOXIA-572
in repository https://gitbox.apache.org/repos/asf/maven-doxia.git.


 discard 3dfd388  [DOXIA-572] - Upgrade parent to 31
     new b698613  [DOXIA-572] - Upgrade parent to 31  o Fixed issues based on the upgrade.

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   (3dfd388)
            \
             N -- N -- N   refs/heads/DOXIA-572 (b698613)

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:
 .../apache/maven/doxia/module/apt/AptParser.java   | 30 +++++++++++-----------
 1 file changed, 15 insertions(+), 15 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
khmarbaise@apache.org.

[maven-doxia] 01/01: [DOXIA-572] - Upgrade parent to 31 o Fixed issues based on the upgrade.

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

khmarbaise pushed a commit to branch DOXIA-572
in repository https://gitbox.apache.org/repos/asf/maven-doxia.git

commit b6986139b4643e8682e7dfe8237a2e5b5350a38b
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Sat Apr 7 18:16:11 2018 +0200

    [DOXIA-572] - Upgrade parent to 31
     o Fixed issues based on the upgrade.
---
 .../apache/maven/doxia/module/apt/AptParser.java   | 30 +++++++++++-----------
 pom.xml                                            |  2 +-
 2 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/doxia-modules/doxia-module-apt/src/main/java/org/apache/maven/doxia/module/apt/AptParser.java b/doxia-modules/doxia-module-apt/src/main/java/org/apache/maven/doxia/module/apt/AptParser.java
index b918a5f..8cbca0a 100644
--- a/doxia-modules/doxia-module-apt/src/main/java/org/apache/maven/doxia/module/apt/AptParser.java
+++ b/doxia-modules/doxia-module-apt/src/main/java/org/apache/maven/doxia/module/apt/AptParser.java
@@ -1677,7 +1677,7 @@ public class AptParser
          * @param indent indent.
          * @throws AptParseException AptParseException
          */
-        public Block( int type, int indent )
+        Block( int type, int indent )
             throws AptParseException
         {
             this( type, indent, null );
@@ -1691,7 +1691,7 @@ public class AptParser
          * @param firstLine the first line.
          * @throws AptParseException AptParseException
          */
-        public Block( int type, int indent, String firstLine )
+        Block( int type, int indent, String firstLine )
             throws AptParseException
         {
             this.type = type;
@@ -1864,7 +1864,7 @@ public class AptParser
          * @param firstLine the first line.
          * @throws AptParseException AptParseException
          */
-        public ListBreak( int indent, String firstLine )
+        ListBreak( int indent, String firstLine )
             throws AptParseException
         {
             super( AptParser.LIST_BREAK, indent, firstLine );
@@ -1889,7 +1889,7 @@ public class AptParser
          * @param firstLine the first line.
          * @throws AptParseException AptParseException
          */
-        public Title( int indent, String firstLine )
+        Title( int indent, String firstLine )
             throws AptParseException
         {
             super( TITLE, indent, firstLine );
@@ -2019,7 +2019,7 @@ public class AptParser
          * @param firstLine the first line.
          * @throws AptParseException AptParseException
          */
-        public Section( int type, int indent, String firstLine )
+        Section( int type, int indent, String firstLine )
             throws AptParseException
         {
             super( type, indent, firstLine );
@@ -2052,7 +2052,7 @@ public class AptParser
          * @param firstLine the first line.
          * @throws AptParseException AptParseException
          */
-        public Section1( int indent, String firstLine )
+        Section1( int indent, String firstLine )
             throws AptParseException
         {
             super( SECTION1, indent, firstLine );
@@ -2082,7 +2082,7 @@ public class AptParser
          * @param firstLine the first line.
          * @throws AptParseException AptParseException
          */
-        public Section2( int indent, String firstLine )
+        Section2( int indent, String firstLine )
             throws AptParseException
         {
             super( SECTION2, indent, firstLine );
@@ -2102,7 +2102,7 @@ public class AptParser
     }
 
     /** A Section3 Block. */
-    private class Section3
+    public class Section3
         extends Section
     {
         /**
@@ -2112,7 +2112,7 @@ public class AptParser
          * @param firstLine the first line.
          * @throws AptParseException AptParseException
          */
-        public Section3( int indent, String firstLine )
+        Section3( int indent, String firstLine )
             throws AptParseException
         {
             super( SECTION3, indent, firstLine );
@@ -2142,7 +2142,7 @@ public class AptParser
          * @param firstLine the first line.
          * @throws AptParseException AptParseException
          */
-        public Section4( int indent, String firstLine )
+        Section4( int indent, String firstLine )
             throws AptParseException
         {
             super( SECTION4, indent, firstLine );
@@ -2172,7 +2172,7 @@ public class AptParser
          * @param firstLine the first line.
          * @throws AptParseException AptParseException
          */
-        public Section5( int indent, String firstLine )
+        Section5( int indent, String firstLine )
             throws AptParseException
         {
             super( SECTION5, indent, firstLine );
@@ -2202,7 +2202,7 @@ public class AptParser
          * @param firstLine the first line.
          * @throws AptParseException AptParseException
          */
-        public Paragraph( int indent, String firstLine )
+        Paragraph( int indent, String firstLine )
             throws AptParseException
         {
             super( PARAGRAPH, indent, firstLine );
@@ -2228,7 +2228,7 @@ public class AptParser
          * @param line the comment line.
          * @throws AptParseException AptParseException
          */
-        public Comment( String line )
+        Comment( String line )
             throws AptParseException
         {
             super( COMMENT_BLOCK, 0, line );
@@ -2259,7 +2259,7 @@ public class AptParser
          * @param firstLine the first line.
          * @throws AptParseException AptParseException
          */
-        public Verbatim( int indent, String firstLine )
+        Verbatim( int indent, String firstLine )
             throws AptParseException
         {
             super( VERBATIM, indent, null );
@@ -2347,7 +2347,7 @@ public class AptParser
          * @param firstLine the first line.
          * @throws AptParseException AptParseException
          */
-        public Figure( int indent, String firstLine )
+        Figure( int indent, String firstLine )
             throws AptParseException
         {
             super( FIGURE, indent, firstLine );
diff --git a/pom.xml b/pom.xml
index 671d9e8..13dc5fd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@ under the License.
   <parent>
     <groupId>org.apache.maven</groupId>
     <artifactId>maven-parent</artifactId>
-    <version>30</version>
+    <version>31</version>
     <relativePath>../../pom/maven/pom.xml</relativePath>
   </parent>
 

-- 
To stop receiving notification emails like this one, please contact
khmarbaise@apache.org.