Minor Formating Fix

Put a space between the period and the bundle of a
periodic sync.

Change-Id: If6cd7ae2b3faf59d2c8fd760983eb4650d62aca9
This commit is contained in:
Alon Albert
2013-07-07 12:31:27 +03:00
parent 326ef35f6f
commit eca2fe9cfc

View File

@@ -1273,7 +1273,7 @@ public class SyncManager {
for (int i = 0; i < settings.periodicSyncs.size(); i++) {
final Pair<Bundle, Long> pair = settings.periodicSyncs.get(i);
final String period = String.valueOf(pair.second);
final String extras = pair.first.size() > 0 ? pair.first.toString() : "";
final String extras = pair.first.size() > 0 ? " " + pair.first.toString() : "";
final String next = formatTime(status.getPeriodicSyncTime(i)
+ pair.second * 1000);
table.set(row + i * 2, 12, period + extras);