Remove printfs and adding comments

This commit is contained in:
Luis A. Bastiao Silva 2010-12-31 15:43:21 +00:00
parent bbf1cff815
commit 5c26be74c8
2 changed files with 4 additions and 6 deletions

View File

@ -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),

View File

@ -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;