переименования в единый стиль полей массивов и регионов
This commit is contained in:
@@ -9,9 +9,9 @@ import java.math.BigInteger;
|
||||
import java.util.Vector;
|
||||
public class AlignRule {
|
||||
@Expose
|
||||
public String packed_alignArray_address;
|
||||
public String packedAlignArrayAddress;
|
||||
@Expose
|
||||
public String packed_alignWith_address;
|
||||
public String packedAlignWithAddress;
|
||||
@Expose
|
||||
public Vector<IntegerPairJson> alignRule;
|
||||
@Expose
|
||||
@@ -41,13 +41,13 @@ public class AlignRule {
|
||||
}
|
||||
public void Init(){
|
||||
//--
|
||||
if (packed_alignArray_address!=null)
|
||||
alignArray_address = new BigInteger(packed_alignArray_address);
|
||||
if (packed_alignWith_address!=null)
|
||||
alignWith_address = new BigInteger(packed_alignWith_address);
|
||||
if (packedAlignArrayAddress !=null)
|
||||
alignArray_address = new BigInteger(packedAlignArrayAddress);
|
||||
if (packedAlignWithAddress !=null)
|
||||
alignWith_address = new BigInteger(packedAlignWithAddress);
|
||||
//--
|
||||
packed_alignArray_address = null;
|
||||
packed_alignWith_address = null;
|
||||
packedAlignArrayAddress = null;
|
||||
packedAlignWithAddress = null;
|
||||
}
|
||||
private static Pair<String, String> convertDigitToPositive(int digit) {
|
||||
String buf = "";
|
||||
|
||||
Reference in New Issue
Block a user