Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 948306b

Browse files
committed
modify rds sdk
1 parent 649adaa commit 948306b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

aliyun-java-sdk-rds/src/main/java/com/aliyuncs/rds/transform/v20140815/DescribeDBInstanceNetworkResponseUnmarshaller.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public static DescribeDBInstanceNetworkResponse unmarshall(DescribeDBInstanceNet
3535
describeDBInstanceNetworkResponse.setStartTime(context.stringValue("DescribeDBInstanceNetworkResponse.StartTime"));
3636
describeDBInstanceNetworkResponse.setEndTime(context.stringValue("DescribeDBInstanceNetworkResponse.EndTime"));
3737

38-
List<Topology> topology = new ArrayList<Topology>();
38+
List<Topology> topologys = new ArrayList<Topology>();
3939
for (int i = 0; i < context.lengthValue("DescribeDBInstanceNetworkResponse.Topology.Length"); i++) {
4040
Topology topology = new Topology();
4141
topology.setStartPoint(context.stringValue("DescribeDBInstanceNetworkResponse.Topology["+ i +"].StartPoint"));
@@ -46,10 +46,10 @@ public static DescribeDBInstanceNetworkResponse unmarshall(DescribeDBInstanceNet
4646
topology.setBackendLatency(context.stringValue("DescribeDBInstanceNetworkResponse.Topology["+ i +"].BackendLatency"));
4747
topology.setNetworkErrors(context.stringValue("DescribeDBInstanceNetworkResponse.Topology["+ i +"].NetworkErrors"));
4848

49-
topology.add(topology);
49+
topologys.add(topology);
5050
}
51-
describeDBInstanceNetworkResponse.setTopology(topology);
51+
describeDBInstanceNetworkResponse.setTopology(topologys);
5252

5353
return describeDBInstanceNetworkResponse;
5454
}
55-
}
55+
}

0 commit comments

Comments
 (0)