Author: kwsutter
Date: Tue Mar 22 18:41:40 2011
New Revision: 1084293

URL: http://svn.apache.org/viewvc?rev=1084293&view=rev
Log:
Another minor comment update in the ImageValidator sample...

Modified:
    
openjpa/branches/2.1.x/openjpa-examples/image-gallery/src/main/java/org/apache/openjpa/example/gallery/constraint/ImageValidator.java

Modified: 
openjpa/branches/2.1.x/openjpa-examples/image-gallery/src/main/java/org/apache/openjpa/example/gallery/constraint/ImageValidator.java
URL: 
http://svn.apache.org/viewvc/openjpa/branches/2.1.x/openjpa-examples/image-gallery/src/main/java/org/apache/openjpa/example/gallery/constraint/ImageValidator.java?rev=1084293&r1=1084292&r2=1084293&view=diff
==============================================================================
--- 
openjpa/branches/2.1.x/openjpa-examples/image-gallery/src/main/java/org/apache/openjpa/example/gallery/constraint/ImageValidator.java
 (original)
+++ 
openjpa/branches/2.1.x/openjpa-examples/image-gallery/src/main/java/org/apache/openjpa/example/gallery/constraint/ImageValidator.java
 Tue Mar 22 18:41:40 2011
@@ -58,7 +58,7 @@ public class ImageValidator implements C
         String fileName = value.getFileName();
         ImageType type = value.getType();
         
-        // Verify the GIF type is correct5, has the correct extension and
+        // Verify the GIF type is correct, has the correct extension and
         // the data header is either GIF87 or GIF89
         if (allowedTypes.contains(ImageType.GIF) &&
             type == ImageType.GIF &&


Reply via email to