mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-16 15:41:16 +01:00
get rid of cute auto-array-creation. No behavior change; maybe no
change in generated code.
This commit is contained in:
parent
9818a29f86
commit
f0d90f0576
1 changed files with 2 additions and 2 deletions
|
@ -36,8 +36,8 @@ import org.eehouse.android.xw4.jni.*;
|
|||
public class Toolbar {
|
||||
|
||||
private static class TBButtonInfo {
|
||||
public TBButtonInfo( int... ids ) {
|
||||
m_ids = ids;
|
||||
public TBButtonInfo( int idHor, int idVert ) {
|
||||
m_ids = new int[] { idHor, idVert };
|
||||
}
|
||||
public int m_ids[];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue