]> source.dussan.org Git - poi.git/commitdiff
Allow user defined named ranges. Calling super doesn't seem to break anything and...
authorAndrew C. Oliver <acoliver@apache.org>
Fri, 2 Mar 2007 02:53:06 +0000 (02:53 +0000)
committerAndrew C. Oliver <acoliver@apache.org>
Fri, 2 Mar 2007 02:53:06 +0000 (02:53 +0000)
exception prevents writing rationale files with user defined named ranges...  Open to discussion
if anyone knows why we're being so fickle here...

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@513604 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/record/formula/AreaNPtg.java

index 8dfb0a758e664a0c2f5a07eac5b3513378dbc1df..9507e37a8e54792de1f69dfa42f101e08fcb169e 100644 (file)
@@ -51,7 +51,10 @@ public class AreaNPtg
   }
 
   public void writeBytes(byte [] array, int offset) {
-    throw new RuntimeException("Coding Error: This method should never be called. This ptg should be converted");
+    super.writeBytes(array,offset);
+    //this should be a warning...there doesn't seem to be any rationale to throwing an exception here...
+    //this excpeiton appears to break user defined named ranges...
+    //throw new RuntimeException("Coding Error: This method should never be called. This ptg should be converted");
   }
 
   public String getAreaPtgName() {