From: Bruno Haible Date: Mon, 21 May 2001 14:01:39 +0000 (+0000) Subject: Update. X-Git-Tag: v0.11~707 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=67829cff2522ae351a3573aed13f61ebb703a73d;p=thirdparty%2Fgettext.git Update. --- diff --git a/Admin/Matrix.java b/Admin/Matrix.java index d93705348..1a020c55a 100644 --- a/Admin/Matrix.java +++ b/Admin/Matrix.java @@ -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"); }