remove unnecessary date file
This commit is contained in:
parent
a0dd42e1e8
commit
ba1b92ee68
1 changed files with 1 additions and 1 deletions
|
@ -432,7 +432,7 @@ public class IncrementalChangesManager {
|
|||
} catch (ParseException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
if (new Date(dateMainMapCreated).after(strDate)) {
|
||||
if (strDate != null && dateMainMapCreated > strDate.getTime()) {
|
||||
outdated = true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue