Consistent use of this when accessing fields in the core project

This commit is contained in:
Andy Wilkinson
2015-01-13 16:25:13 +00:00
parent 78736d6c50
commit b57eb002dc
11 changed files with 58 additions and 40 deletions

View File

@@ -38,7 +38,7 @@ import org.springframework.util.FileCopyUtils;
/**
* Tests for {@link LinkExtractors}.
*
*
* @author Andy Wilkinson
*/
@RunWith(Parameterized.class)
@@ -118,7 +118,7 @@ public class LinkExtractorsTests {
}
private File getPayloadFile(String name) {
return new File("src/test/resources/link-payloads/" + linkType + "/" + name
return new File("src/test/resources/link-payloads/" + this.linkType + "/" + name
+ ".json");
}
}