mirror of https://github.com/apache/jclouds.git
Remove printfs and adding comments
This commit is contained in:
parent
bbf1cff815
commit
5c26be74c8
|
@ -15,9 +15,11 @@ import org.jclouds.http.HttpRequest;
|
|||
import org.jclouds.rest.Binder;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Luís A. Bastião Silva <bastiao@ua.pt>
|
||||
*/
|
||||
public class BindAttributesToIndexedFormParams implements Binder {
|
||||
public class BindAttributesToIndexedFormParams implements Binder
|
||||
{
|
||||
|
||||
private final String attributeName = "Attribute.%d.Name";
|
||||
private final String attributeValue = "Attribute.%d.Value";
|
||||
|
@ -41,11 +43,6 @@ public class BindAttributesToIndexedFormParams implements Binder {
|
|||
|
||||
String value = attr.getValue();
|
||||
|
||||
// System.out.println(format(attributeName, amazonOneBasedIndex)+ "" + attr.getKey());
|
||||
// System.out.println(format(attributeValue, amazonOneBasedIndex)+ "" + value);
|
||||
// System.out.println(format(attributeReplace, amazonOneBasedIndex) +""+ String
|
||||
// .valueOf(attr.isReplace()) );
|
||||
|
||||
if (value != null) {
|
||||
addFormParamTo(request, format(attributeName, amazonOneBasedIndex), attr.getKey() );
|
||||
addFormParamTo(request, format(attributeValue, amazonOneBasedIndex),
|
||||
|
|
|
@ -21,5 +21,6 @@
|
|||
*
|
||||
* @see <a href="http://docs.amazonwebservices.com/AmazonSimpleDB/2009-04-15/DeveloperGuide/index.html"/>
|
||||
* @author Adrian Cole
|
||||
* @author Luís A. Bastião Silva <bastiao@ua.pt>
|
||||
*/
|
||||
package org.jclouds.aws.simpledb;
|
||||
|
|
Loading…
Reference in New Issue