Notification.java:220
try {
int timeout = Integer.parseInt(timeoutString) * NUM_MS_IN_SECOND;
return timeout;
} catch (NumberFormatException nfe) {
return DEFAULT_NOTIFICATION_TIMEOUT;
}
according to "NUM_MS_IN_SECOND" timeout measures in milliseconds, according to value of DEFAULT_NOTIFICATION_TIMEOUT time is in seconds.
Notification.java:220
try {
int timeout = Integer.parseInt(timeoutString) * NUM_MS_IN_SECOND;
return timeout;
} catch (NumberFormatException nfe) {
return DEFAULT_NOTIFICATION_TIMEOUT;
}
according to "NUM_MS_IN_SECOND" timeout measures in milliseconds, according to value of DEFAULT_NOTIFICATION_TIMEOUT time is in seconds.