Skip to content

Commit

Permalink
Fixed a typo in config method name
Browse files Browse the repository at this point in the history
  • Loading branch information
ilkkarinne committed Mar 28, 2019
1 parent 140ad12 commit a7a5a3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/fi/fmi/avi/converter/tac/conf/TACConverter.java
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ public AviMessageLexer aviMessageLexer() {
l.addTokenLexer(speciTokenLexer());
l.addTokenLexer(tafTokenLexer());
l.addTokenLexer(genericMeteorologicalBulletinTokenLexer());
l.addTokenLexer(genericAviationWeathermessageTokenLexer()); //Keep this last, matches anything
l.addTokenLexer(genericAviationWeatherMessageTokenLexer()); //Keep this last, matches anything
return l;
}

Expand Down Expand Up @@ -493,7 +493,7 @@ public AviationCodeListUser.MessageType getMessageType() {
return l;
}

private RecognizingAviMessageTokenLexer genericAviationWeathermessageTokenLexer() {
private RecognizingAviMessageTokenLexer genericAviationWeatherMessageTokenLexer() {
final RecognizingAviMessageTokenLexer l = new RecognizingAviMessageTokenLexer();
//Lambdas not allowed in Spring 3.x Java config files:
l.setSuitabilityTester(new RecognizingAviMessageTokenLexer.SuitabilityTester() {
Expand Down

0 comments on commit a7a5a3b

Please sign in to comment.