You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by ri...@apache.org on 2006/06/19 16:24:33 UTC

svn commit: r415341 - /incubator/felix/trunk/tools/maven2/maven-osgi-plugin/src/main/java/org/apache/felix/tools/maven/plugin/OsgiJarMojo.java

Author: rickhall
Date: Mon Jun 19 07:24:33 2006
New Revision: 415341

URL: http://svn.apache.org/viewvc?rev=415341&view=rev
Log:
Improved a comment.

Modified:
    incubator/felix/trunk/tools/maven2/maven-osgi-plugin/src/main/java/org/apache/felix/tools/maven/plugin/OsgiJarMojo.java

Modified: incubator/felix/trunk/tools/maven2/maven-osgi-plugin/src/main/java/org/apache/felix/tools/maven/plugin/OsgiJarMojo.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/tools/maven2/maven-osgi-plugin/src/main/java/org/apache/felix/tools/maven/plugin/OsgiJarMojo.java?rev=415341&r1=415340&r2=415341&view=diff
==============================================================================
--- incubator/felix/trunk/tools/maven2/maven-osgi-plugin/src/main/java/org/apache/felix/tools/maven/plugin/OsgiJarMojo.java (original)
+++ incubator/felix/trunk/tools/maven2/maven-osgi-plugin/src/main/java/org/apache/felix/tools/maven/plugin/OsgiJarMojo.java Mon Jun 19 07:24:33 2006
@@ -353,8 +353,8 @@
 		for (Iterator m = test.iterator(); m.hasNext();) {
 			Object o = m.next();
 			// For backwards compatibility with existing builds, only
-            // issue a warning for missing imports. Other the other hand,
-            // if packages are being ignored, then this is a new build
+            // Issue a warning for missing imports. On the other hand,
+            // if packages are being ignored, then this is a new project
             // so be more strict and throw an error.
             if (osgiManifest.getIgnorePackage() == null) {
                 getLog().warn("[OSGi] MISSING IMPORT: " + o);
@@ -736,4 +736,4 @@
         }
         getLog().debug("Referenced package list: \n" + buf.toString());
     }
-}
\ No newline at end of file
+}