You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by jo...@apache.org on 2009/11/27 21:47:40 UTC

svn commit: r885000 - in /poi/trunk/src: java/org/apache/poi/hssf/usermodel/HSSFPatriarch.java ooxml/java/org/apache/poi/xssf/usermodel/XSSFDrawing.java

Author: josh
Date: Fri Nov 27 20:47:39 2009
New Revision: 885000

URL: http://svn.apache.org/viewvc?rev=885000&view=rev
Log:
small tweak to fix compiler error after r884918 (differences in @Override rules from java 5 to 6)

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

Modified: poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFPatriarch.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFPatriarch.java?rev=885000&r1=884999&r2=885000&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFPatriarch.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFPatriarch.java Fri Nov 27 20:47:39 2009
@@ -157,8 +157,7 @@
         return shape;
     }
 
-    @Override
-    public HSSFComment createCellComment(ClientAnchor anchor){
+    public HSSFComment createCellComment(ClientAnchor anchor) {
         return createComment((HSSFAnchor)anchor);
     }
 
@@ -258,7 +257,7 @@
     }
 
     /**
-     * Returns the aggregate escher record we're bound to 
+     * Returns the aggregate escher record we're bound to
      */
     protected EscherAggregate _getBoundAggregate() {
         return _boundAggregate;

Modified: poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFDrawing.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFDrawing.java?rev=885000&r1=884999&r2=885000&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFDrawing.java (original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFDrawing.java Fri Nov 27 20:47:39 2009
@@ -241,9 +241,7 @@
      *                  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();
 



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org