fixed casing on variable - checkstyle

Former-commit-id: 5ca2786ba5a1c42e670f0d352a92f7789b1ddc60
This commit is contained in:
Jeremy Long
2014-01-25 11:03:09 -05:00
parent 6e2f102177
commit 8f985737b0

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;
}
/**