[Idrs-commit] CVS: Idrs/dev/src/net/sourceforge/idrs/core/report IDRSBody.java,1.4,1.5 IDRSHead.java
Brought to you by:
bigman921
|
From: Marc B. <big...@us...> - 2002-04-05 15:29:47
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report
In directory usw-pr-cvs1:/tmp/cvs-serv14497/dev/src/net/sourceforge/idrs/core/report
Modified Files:
IDRSBody.java IDRSHead.java
Log Message:
bug fixes, documentation
Index: IDRSBody.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/IDRSBody.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** IDRSBody.java 4 Mar 2002 23:05:34 -0000 1.4
--- IDRSBody.java 5 Apr 2002 14:37:51 -0000 1.5
***************
*** 91,96 ****
//output += ln.toString(head) + "\n";
ln.toString(head,buffer);
if (buffer.charAt(buffer.length()-1)!='\n')
! buffer.append("\n");
}
}
--- 91,97 ----
//output += ln.toString(head) + "\n";
ln.toString(head,buffer);
+ /*
if (buffer.charAt(buffer.length()-1)!='\n')
! buffer.append("\n");*/
}
}
Index: IDRSHead.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/core/report/IDRSHead.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** IDRSHead.java 23 Mar 2002 04:48:27 -0000 1.7
--- IDRSHead.java 5 Apr 2002 14:37:51 -0000 1.8
***************
*** 212,216 ****
//key = (String) keys.next();
key = dbNames[l];
! //System.out.println("KEY : " + key);
db = (DB) dbs.get(key);
if (conns != null) {
--- 212,216 ----
//key = (String) keys.next();
key = dbNames[l];
! System.out.println("KEY : " + key);
db = (DB) dbs.get(key);
if (conns != null) {
|