...
|
...
|
@@ -79,7 +79,7 @@ public class QcloudBandwidthTask { |
|
|
for (int i = list.size() - 1; i >= 0; i--) {
|
|
|
Object bandwidth = list.get(i);
|
|
|
if (bandwidth != null){
|
|
|
outtraffic = (Integer) bandwidth;
|
|
|
outtraffic = ((Double) bandwidth).intValue();
|
|
|
break;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -91,7 +91,7 @@ public class QcloudBandwidthTask { |
|
|
for (int i = list2.size() - 1; i >= 0; i--) {
|
|
|
Object bandwidth = list2.get(i);
|
|
|
if (bandwidth != null){
|
|
|
intraffic = (Integer) bandwidth;
|
|
|
intraffic = ((Double) bandwidth).intValue();
|
|
|
break;
|
|
|
}
|
|
|
|
...
|
...
|
|