Commit 668bf81b authored by Robert Griesemer's avatar Robert Griesemer

- removed obsolete comments

R=r
DELTA=2  (0 added, 1 deleted, 1 changed)
OCL=24755
CL=24760
parent e08cc152
...@@ -94,7 +94,6 @@ func (b *byteArray) append(s []byte) { ...@@ -94,7 +94,6 @@ func (b *byteArray) append(s []byte) {
// and ending in ';') as single characters (width = 1) // and ending in ';') as single characters (width = 1)
type Writer struct { type Writer struct {
// TODO should not export any of the fields
// configuration // configuration
writer io.Write; writer io.Write;
cellwidth int; cellwidth int;
...@@ -374,7 +373,7 @@ func (b *Writer) append(buf []byte) { ...@@ -374,7 +373,7 @@ func (b *Writer) append(buf []byte) {
} }
/* export */ func (b *Writer) Write(buf []byte) (written int, err *os.Error) { func (b *Writer) Write(buf []byte) (written int, err *os.Error) {
i0, n := 0, len(buf); i0, n := 0, len(buf);
// split text into cells // split text into cells
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment