Remove unused literal methods
This commit is contained in:
parent
47a4bd77ad
commit
a2d0f9ccb7
1 changed files with 0 additions and 8 deletions
|
@ -339,10 +339,6 @@ public class ImapResponseParser {
|
|||
return (String)get(index);
|
||||
}
|
||||
|
||||
public InputStream getLiteral(int index) {
|
||||
return (InputStream)get(index);
|
||||
}
|
||||
|
||||
public int getNumber(int index) {
|
||||
return Integer.parseInt(getString(index));
|
||||
}
|
||||
|
@ -384,10 +380,6 @@ public class ImapResponseParser {
|
|||
return (String)getKeyedValue(key);
|
||||
}
|
||||
|
||||
public InputStream getKeyedLiteral(Object key) {
|
||||
return (InputStream)getKeyedValue(key);
|
||||
}
|
||||
|
||||
public int getKeyedNumber(Object key) {
|
||||
return Integer.parseInt(getKeyedString(key));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue