1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Merge pull request #57 from andrewgaul/static-inner-classes

Make an inner class static
This commit is contained in:
cketti 2011-10-06 08:59:33 -07:00
commit b0ff343f98

View File

@ -324,7 +324,7 @@ public class ImapResponseParser {
* Represents an IMAP list response and is also the base class for the * Represents an IMAP list response and is also the base class for the
* ImapResponse. * ImapResponse.
*/ */
public class ImapList extends ArrayList<Object> { public static class ImapList extends ArrayList<Object> {
private static final long serialVersionUID = -4067248341419617583L; private static final long serialVersionUID = -4067248341419617583L;
public ImapList getList(int index) { public ImapList getList(int index) {