1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-01-31 07:10:14 -05:00

Renamed "usee" to "uee".

The naturalize tool detected that using "uee" is more consistent with
the current codebase state:
* "uee" in LocalStore is 28.47% probable ("usee" 5.01%)
* "uee" in TextBody is 45.02% probable ("usee" 9.10%)
This commit is contained in:
Miltos Allamanis 2014-02-26 14:23:33 +00:00
parent 1091e7af99
commit be2b3b1ec2
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ public class TextBody implements Body {
b = EMPTY_BYTE_ARRAY;
}
return new ByteArrayInputStream(b);
} catch (UnsupportedEncodingException usee) {
} catch (UnsupportedEncodingException uee) {
return null;
}
}

View File

@ -1068,7 +1068,7 @@ public class LocalStore extends Store implements Serializable {
return null;
}
});
} catch (UnsupportedEncodingException usee) {
} catch (UnsupportedEncodingException uee) {
throw new Error("Aparently UTF-8 has been lost to the annals of history.");
}
}