fixed casing on variable - checkstyle

Former-commit-id: 35b32c4948f98188bdc0795f45978808342e91c7
This commit is contained in:
Jeremy Long
2014-01-25 11:03:09 -05:00
parent 310a6003fd
commit 9f1aac5138

View File

@@ -488,7 +488,7 @@ public class DependencyCheckTask extends Task {
/**
* Get the value of nexusUrl.
*
* @return the value of NexusUrl
* @return the value of nexusUrl
*/
public String getNexusUrl() {
return nexusUrl;
@@ -497,10 +497,10 @@ public class DependencyCheckTask extends Task {
/**
* Set the value of nexusUrl.
*
* @param NexusUrl new value of NexusUrl
* @param nexusUrl new value of nexusUrl
*/
public void setNexusUrl(String NexusUrl) {
this.nexusUrl = NexusUrl;
public void setNexusUrl(String nexusUrl) {
this.nexusUrl = nexusUrl;
}
/**