[Minor] code formatting

This commit is contained in:
Robert von Burg 2014-03-27 18:50:14 +01:00
parent 2647115f6f
commit 2adf809515
1 changed files with 5 additions and 8 deletions

View File

@ -28,7 +28,7 @@ public class Resource {
private Map<String, Parameter> parameters = new HashMap<String, Parameter>();
/**
*
*
*/
public Resource() {
// empty constructor
@ -73,8 +73,7 @@ public class Resource {
}
/**
* @param id
* the id to set
* @param id the id to set
*/
public void setId(String id) {
this.id = id;
@ -88,8 +87,7 @@ public class Resource {
}
/**
* @param name
* the name to set
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
@ -103,8 +101,7 @@ public class Resource {
}
/**
* @param type
* the type to set
* @param type the type to set
*/
public void setType(String type) {
this.type = type;
@ -121,4 +118,4 @@ public class Resource {
public Parameter getParameterBy(String id) {
return this.parameters.get(id);
}
}
}