]> source.dussan.org Git - poi.git/commitdiff
small tweak to fix compiler error after r884918 (differences in @Override rules from...
authorJosh Micich <josh@apache.org>
Fri, 27 Nov 2009 20:47:39 +0000 (20:47 +0000)
committerJosh Micich <josh@apache.org>
Fri, 27 Nov 2009 20:47:39 +0000 (20:47 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@885000 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/usermodel/HSSFPatriarch.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFDrawing.java

index 65267a17c42bd33d0cf09fcb61244aebb89b2af3..859181d7acb44b14f3c84c8b29efe275caa09b3b 100644 (file)
@@ -157,8 +157,7 @@ public final class HSSFPatriarch implements HSSFShapeContainer, Drawing {
         return shape;
     }
 
-    @Override
-    public HSSFComment createCellComment(ClientAnchor anchor){
+    public HSSFComment createCellComment(ClientAnchor anchor) {
         return createComment((HSSFAnchor)anchor);
     }
 
@@ -258,7 +257,7 @@ public final class HSSFPatriarch implements HSSFShapeContainer, Drawing {
     }
 
     /**
-     * Returns the aggregate escher record we're bound to 
+     * Returns the aggregate escher record we're bound to
      */
     protected EscherAggregate _getBoundAggregate() {
         return _boundAggregate;
index 230819a02f4c8dce86ea935b517c478fe9663622..a2a651f97d1a1ecd41d7cfdb08cbb8b7b0fe8769 100644 (file)
@@ -241,9 +241,7 @@ public final class XSSFDrawing extends POIXMLDocumentPart implements Drawing {
      *                  to the sheet.
      * @return  the newly created comment.
      */
-    @Override
-    public XSSFComment createCellComment(ClientAnchor anchor)
-    {
+    public XSSFComment createCellComment(ClientAnchor anchor) {
         XSSFClientAnchor ca = (XSSFClientAnchor)anchor;
         XSSFSheet sheet = (XSSFSheet)getParent();