This commit is contained in:
Phillip Webb
2014-05-20 13:13:39 +01:00
parent e40acd81e4
commit 8bcda1bcbe
91 changed files with 477 additions and 438 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2013 the original author or authors.
* Copyright 2012-2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -39,7 +39,7 @@ public class SampleFlywayApplication implements CommandLineRunner {
@Override
public void run(String... args) throws Exception {
System.err.println(repository.findAll());
System.err.println(this.repository.findAll());
}
public static void main(String[] args) throws Exception {
@@ -61,7 +61,7 @@ class Person {
private String lastName;
public String getFirstName() {
return firstName;
return this.firstName;
}
public void setFirstName(String firstName) {
@@ -69,7 +69,7 @@ class Person {
}
public String getLastName() {
return lastName;
return this.lastName;
}
public void setLastName(String lastname) {
@@ -78,7 +78,7 @@ class Person {
@Override
public String toString() {
return "Person [firstName=" + firstName + ", lastName=" + lastName
return "Person [firstName=" + this.firstName + ", lastName=" + this.lastName
+ "]";
}
}