Commit Graph

16 Commits

Author SHA1 Message Date
Andrew Gaul 88d53b8792 Enforce no empty statements via Checkstyle 2012-11-01 18:59:18 -07:00
Andrew Gaul 93d69ece2b Enforce newline at end of file via Checkstyle
Also address all warnings, via:

find -name \*.java | while read i; do if [ x`tail -c 1 $i` != x"" ]; then echo >> $i; fi; done
2012-10-29 22:12:44 -07:00
Andrew Gaul 709ca69a2d Enforce that all imports are used via Checkstyle
Also remove all unused imports, via:

mvn checkstyle:checkstyle -Dcheckstyle.output.file=/dev/stdout -Dcheckstyle.output.format=plain | tac | awk -v FS=: '/warning/{print "sed -i " $2 "d " $1}' | while read i; do $i; done
2012-10-29 17:11:08 -07:00
Andrew Gaul 28d7a6f143 Prefer immutable over empty collections
The former does not create an object when calling iterator(), as
discussed here:

https://groups.google.com/d/msg/jclouds-dev/l7BviKDXreA/mP6Ow_RYxIgJ
2012-10-20 15:35:29 -07:00
Adrian Cole 4ffe56c979 corrected equals/hashCode as map builder doesn't honor that 2012-09-23 14:33:53 -07:00
Adrian Cole 1864606d4e added SQS utility for fetching all messages 2012-09-21 17:30:23 -07:00
Adrian Cole 4990934470 added get queue by name for SQS 2012-09-20 15:26:06 -07:00
Adrian Cole 28d766b9df bumped to 1.6.0-SNAPSHOT 2012-09-17 01:43:52 -07:00
Andrew Phillips 085bc43d48 Allow for slightly inaccurate system timers in SQSErrorRetryHandlerTest (see https://groups.google.com/d/topic/jclouds-dev/uQsqlR-CEOQ/discussion) 2012-09-16 18:34:55 +01:00
Adrian Cole b951276ec3 cleaned up aws apis 2012-09-15 23:47:44 -07:00
Adrian Cole c7cb9951a8 moved sqs/aws-sqs live 2012-09-14 18:15:50 -07:00
Adrian Cole 32d1cf6f90 Issue 440: moved simpledb, sqs, and cloudwatch into sandbox 2011-01-06 17:03:16 -08:00
Adrian Cole 71fc2792f3 Issue 440: moved jclouds-aws to aws-common 2011-01-06 16:48:51 -08:00
Adrian Cole 47faeaf1bf Issue 440: corrected poms 2011-01-06 12:11:04 -08:00
Adrian Cole 9185800200 Issue 440: move sqs code into its own api module 2011-01-05 18:23:46 +01:00
Adrian Cole ae77435da5 new api structure for ec2 elb s3 simpledb and sqs 2011-01-02 13:31:41 +01:00