]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Update.
authorBruno Haible <bruno@clisp.org>
Mon, 21 May 2001 14:01:39 +0000 (14:01 +0000)
committerBruno Haible <bruno@clisp.org>
Mon, 21 May 2001 14:01:39 +0000 (14:01 +0000)
Admin/Matrix.java

index d9370534808476382d533a29f6e8ed4791a41197..1a020c55a8faf3a668aecaeebd3f44488d8479e3 100644 (file)
@@ -136,11 +136,11 @@ public class Matrix {
       // Split into separate tables, to keep 80 column width.
       int ngroups;
       int[][] groups;
-      if (nteams == 28) {
+      if (nteams == 29) {
         ngroups = 2;
         groups = new int[ngroups][];
         groups[0] = new int[] { 0, 15 };
-        groups[1] = new int[] { 15, 28 };
+        groups[1] = new int[] { 15, 29 };
       } else {
         ngroups = 1;
         groups = new int[ngroups][];
@@ -228,13 +228,14 @@ public class Matrix {
           stream.print(s);
           spaces(stream,(i+1)/2);
         }
-        stream.print(' ');
-        stream.print(' ');
-        {
+        if (group == ngroups-1) {
+          stream.print(' ');
+          stream.print(' ');
           String s = Integer.toString(total);
           spaces(stream,3-s.length());
-          stream.println(s);
+          stream.print(s);
         }
+        stream.println();
 
         stream.println("@end group");
       }