Messaging: Fix javadoc

Change-Id: Ia1b0a8fa9a5e74078a68a55ca1953b6f085521b1
This commit is contained in:
Michael W
2024-12-26 15:54:37 +01:00
parent e29b158fba
commit 5403d02b5d
46 changed files with 20 additions and 170 deletions
@@ -30,9 +30,6 @@ import java.io.IOException;
abstract class MmsXmlResourceParser {
/**
* Parse the content
*
* @throws IOException
* @throws XmlPullParserException
*/
protected abstract void parseRecord() throws IOException, XmlPullParserException;
@@ -87,10 +84,7 @@ abstract class MmsXmlResourceParser {
/**
* Move XML parser forward to next event type or the end of doc
*
* @param eventType
* @return The final event type we meet
* @throws XmlPullParserException
* @throws IOException
*/
protected int advanceToNextEvent(int eventType) throws XmlPullParserException, IOException {
for (;;) {