mirror of https://github.com/apache/poi.git
Allow user defined named ranges. Calling super doesn't seem to break anything and throwing the
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
This commit is contained in:
parent
3c9d557f30
commit
71e5ccf8e2
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue