mirror of
https://https.git.savannah.gnu.org/git/gettext.git
synced 2026-01-26 15:39:11 +00:00
Update.
This commit is contained in:
parent
bedfaef059
commit
67829cff25
@ -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");
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user