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

Don't reference the enclosing type instance when it's not used (memory optimisation)

This commit is contained in:
Fiouz 2010-12-14 19:27:04 +00:00
parent 0d23157e3b
commit caabbd735a

View File

@ -1106,7 +1106,7 @@ public class Pop3Store extends Store
}//Pop3Folder }//Pop3Folder
class Pop3Message extends MimeMessage static class Pop3Message extends MimeMessage
{ {
public Pop3Message(String uid, Pop3Folder folder) public Pop3Message(String uid, Pop3Folder folder)
{ {
@ -1148,7 +1148,7 @@ public class Pop3Store extends Store
} }
} }
class Pop3Capabilities static class Pop3Capabilities
{ {
public boolean stls; public boolean stls;
public boolean top; public boolean top;
@ -1168,7 +1168,7 @@ public class Pop3Store extends Store
} }
} }
class Pop3ResponseInputStream extends InputStream static class Pop3ResponseInputStream extends InputStream
{ {
InputStream mIn; InputStream mIn;
boolean mStartOfLine = true; boolean mStartOfLine = true;