mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-15 22:15:15 -05:00
Don't reference the enclosing type instance when it's not used (memory optimisation)
This commit is contained in:
parent
0d23157e3b
commit
caabbd735a
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user