The constructor javadoc comments were incorrect. Combined patch for all three files (extreeeeemly minor patch, no code changed) --- jakarta-poi-original/src/java/org/apache/poi/hssf/record/formula/GreaterEqualPtg.java 2003-05-06 22:40:52.000000000 -0500 +++ jakarta-poi/src/java/org/apache/poi/hssf/record/formula/GreaterEqualPtg.java 2003-07-16 20:27:17.000000000 -0500 @@ -66,7 +66,7 @@ public final static int SIZE = 1; public final static byte sid = 0x0c; - /** Creates new AddPtg */ + /** Creates new GreaterEqualPtg */ public GreaterEqualPtg() { --- jakarta-poi-original/src/java/org/apache/poi/hssf/record/formula/LessEqualPtg.java 2003-05-06 22:40:52.000000000 -0500 +++ jakarta-poi/src/java/org/apache/poi/hssf/record/formula/LessEqualPtg.java 2003-07-16 20:27:20.000000000 -0500 @@ -67,7 +67,7 @@ public final static int SIZE = 1; public final static byte sid = 0x0a; - /** Creates new AddPtg */ + /** Creates new LessEqualPtg */ public LessEqualPtg() { --- jakarta-poi-original/src/java/org/apache/poi/hssf/record/formula/NotEqualPtg.java 2003-05-06 22:40:52.000000000 -0500 +++ jakarta-poi/src/java/org/apache/poi/hssf/record/formula/NotEqualPtg.java 2003-07-16 20:27:22.000000000 -0500 @@ -69,7 +69,7 @@ public final static int SIZE = 1; public final static byte sid = 0x0e; - /** Creates new AddPtg */ + /** Creates new NotEqualPtg */ public NotEqualPtg() {
Created attachment 7344 [details] combined patch for GreaterEqualPtg.java, LessEqualPtg.java and NotEqualPtg.java (javadoc fixes only)
straight forward. thank you. we should apply this.
Thanks, applied to head and 2-branch