You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2009/08/17 10:40:49 UTC

svn commit: r804900 - /maven/components/trunk/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblem.java

Author: bentmann
Date: Mon Aug 17 08:40:48 2009
New Revision: 804900

URL: http://svn.apache.org/viewvc?rev=804900&view=rev
Log:
o Made QDox happy

Modified:
    maven/components/trunk/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblem.java

Modified: maven/components/trunk/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblem.java
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblem.java?rev=804900&r1=804899&r2=804900&view=diff
==============================================================================
--- maven/components/trunk/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblem.java (original)
+++ maven/components/trunk/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblem.java Mon Aug 17 08:40:48 2009
@@ -32,12 +32,12 @@
     /**
      * The different severity levels for a problem, in decreasing order.
      */
-    public enum Severity
+    enum Severity
     {
 
         FATAL, //
         ERROR, //
-        WARNING, //
+        WARNING; //
 
     }
 
@@ -48,27 +48,27 @@
      * 
      * @return The hint about the source of the problem, never {@code null}.
      */
-    public String getSource();
+    String getSource();
 
     /**
      * Gets the exception that caused this problem (if any).
      * 
      * @return The exception that caused this problem or {@code null} if not applicable.
      */
-    public Exception getException();
+    Exception getException();
 
     /**
      * Gets the message that describes this problem.
      * 
      * @return The message describing this problem, never {@code null}.
      */
-    public String getMessage();
+    String getMessage();
 
     /**
      * Gets the severity level of this problem.
      * 
      * @return The severity level of this problem, never {@code null}.
      */
-    public Severity getSeverity();
+    Severity getSeverity();
 
 }