Replace "cannot" by "could not"

This commit is contained in:
Romain Vimont 2019-06-23 20:49:38 +02:00
commit 056e47e752
13 changed files with 37 additions and 37 deletions

View file

@ -116,7 +116,7 @@ public final class Server {
try {
new File(SERVER_PATH).delete();
} catch (Exception e) {
Ln.e("Cannot unlink server", e);
Ln.e("Could not unlink server", e);
}
}

View file

@ -29,7 +29,7 @@ public class StatusBarManager {
try {
expandNotificationsPanelMethod.invoke(manager);
} catch (InvocationTargetException | IllegalAccessException e) {
Ln.e("Cannot invoke ServiceBarManager.expandNotificationsPanel()", e);
Ln.e("Could not invoke ServiceBarManager.expandNotificationsPanel()", e);
}
}
@ -45,7 +45,7 @@ public class StatusBarManager {
try {
collapsePanelsMethod.invoke(manager);
} catch (InvocationTargetException | IllegalAccessException e) {
Ln.e("Cannot invoke ServiceBarManager.collapsePanels()", e);
Ln.e("Could not invoke ServiceBarManager.collapsePanels()", e);
}
}
}