Skip to content
Snippets Groups Projects
Commit 54e53207 authored by Goik Martin's avatar Goik Martin
Browse files

consistent variable name, final added

parent 908b0af1
No related branches found
No related tags found
No related merge requests found
......@@ -54,8 +54,8 @@ public class SearchByIcao {
criteria.where(builder.equal( airlineRoot.get( Airline_.icaoCode), "DLH" ));
final List<Airline> airlines = em.createQuery( criteria ).getResultList();
for ( Airline person : airlines ) {
System.out.println(person);
for (final Airline airline : airlines ) {
System.out.println(airline);
}
em.getTransaction().commit();
log.info("Read completed");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment