mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 22:51:02 +00:00
Reduced logging
This commit is contained in:
parent
645830449a
commit
f4105b7167
1 changed files with 2 additions and 2 deletions
|
@ -713,14 +713,14 @@ public class ContactInfo {
|
|||
for (String size : sizes.split(" ")) {
|
||||
int min = Integer.MAX_VALUE;
|
||||
for (String p : size.trim().split("[x|X]")) {
|
||||
if (TextUtils.isEmpty(p))
|
||||
if (TextUtils.isEmpty(p) || "any".equalsIgnoreCase(p))
|
||||
continue;
|
||||
|
||||
try {
|
||||
int x = Integer.parseInt(p);
|
||||
if (x < min)
|
||||
min = x;
|
||||
} catch (NumberFormatException ex) {
|
||||
// "any"
|
||||
Log.w(ex);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue