File tree Expand file tree Collapse file tree
base/src/main/java/com/smartdevicelink/managers/screen Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -53,7 +53,6 @@ public class AlertView implements Cloneable {
5353
5454
5555 private AlertView () {
56- this .timeout = defaultTimeout ;
5756 }
5857
5958 public static class Builder {
@@ -166,7 +165,7 @@ public void cancel() {
166165
167166 public Integer getTimeout () {
168167 if (timeout == null ) {
169- timeout = defaultTimeout ;
168+ timeout = getDefaultTimeout () ;
170169 } else if (timeout < TIMEOUT_MIN ) {
171170 return TIMEOUT_MIN ;
172171 } else if (timeout > TIMEOUT_MAX ) {
@@ -246,7 +245,7 @@ public int getDefaultTimeout() {
246245 }
247246
248247 public void setDefaultTimeout (int defaultTimeout ) {
249- this .defaultTimeout = defaultTimeout ;
248+ AlertView .defaultTimeout = defaultTimeout ;
250249 }
251250
252251 public void setTimeout (int timeout ) {
You can’t perform that action at this time.
0 commit comments