Jackson structured programming: Difference between revisions

Content deleted Content added
Communications of the ACM
m fixed bug in jsp version
Line 19:
String line;
 
while ((line = in.readLine();) != null) {
while (line != null) {
int count = 0;
String firstLineOfGroup = line;