Skip to content

Commit

Permalink
Optimize
Browse files Browse the repository at this point in the history
  • Loading branch information
ccavanaugh committed Aug 26, 2018
1 parent 903b30e commit 946794d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -945,7 +945,7 @@ private void parseBankTransaction(final XMLStreamReader reader) throws XMLStream
logger.exiting(OfxV2Parser.class.getName(), "parseBankTransaction");
}

private void parseAccountInfo(final ImportTransaction importTransaction, final AccountInfo accountInfo) {
private static void parseAccountInfo(final ImportTransaction importTransaction, final AccountInfo accountInfo) {
importTransaction.setAccountTo(accountInfo.accountId);
}

Expand All @@ -955,7 +955,7 @@ private void parseAccountInfo(final ImportTransaction importTransaction, final A
* @param reader shared XMLStreamReader
* @throws XMLStreamException XML parsing error has occurred
*/
private AccountInfo parseAccountInfo(final XMLStreamReader reader) throws XMLStreamException {
private static AccountInfo parseAccountInfo(final XMLStreamReader reader) throws XMLStreamException {
logger.entering(OfxV2Parser.class.getName(), "parseAccountInfo");

final QName parsingElement = reader.getName();
Expand Down Expand Up @@ -1002,7 +1002,7 @@ private AccountInfo parseAccountInfo(final XMLStreamReader reader) throws XMLStr
return accountInfo;
}

private void parseAccountInfo(final OfxBank ofxBank, final AccountInfo accountInfo) {
private static void parseAccountInfo(final OfxBank ofxBank, final AccountInfo accountInfo) {
ofxBank.bankId = accountInfo.bankId;
ofxBank.branchId = accountInfo.branchId;
ofxBank.accountId = accountInfo.accountId;
Expand Down

0 comments on commit 946794d

Please sign in to comment.