Andrew Gaul
|
a493e2ca2f
|
JCLOUDS-1225: Address Guava 18 Objects changes
Fixed with:
find -name \*.java | xargs sed -i 's/Objects.[Tt]oStringHelper/More&/g'
find -name \*.java | xargs sed -i 's/Objects.firstNonNull/More&/g'
find -name \*.java | xargs sed -i 's/^\(import com.google.common.base.\)\(Objects.*\)/\1More\2\n\1\2/g'
find -name \*.java | xargs java -jar google-java-format-1.3-all-deps.jar -i --fix-imports-only --skip-sorting-imports
|
2017-08-22 17:12:53 -07:00 |
Andrea Turli
|
a515ce2f22
|
Change line endings on files recursively
|
2016-07-14 00:02:13 +02:00 |
Andrew Gaul
|
6360023f09
|
Remove unnecessary static imports
Found via error-prone.
|
2016-01-29 09:14:55 -08:00 |
Everett Toews
|
7375ca4619
|
Normalize deprecation messages to make them easier to find
|
2015-01-21 11:00:43 -06:00 |
Jeremy Daggett
|
d3c1e2eab4
|
Use AutoService to generate service loader metadata
|
2015-01-09 11:22:12 -08:00 |
Adrian Cole
|
3980cd791b
|
Revert "JCLOUDS-653: Address Guava 18 deprecations"
This reverts commit 95cfc0d950 .
Many conflicts due to duration between above commit and now
|
2014-10-24 10:45:58 -07:00 |
Andrew Gaul
|
195998b3b6
|
Miscellaneous FindBugs fixes
|
2014-08-30 14:33:10 -07:00 |
Andrew Gaul
|
5399cb6877
|
Avoid unnecessary boxing
Found with FindBugs.
|
2014-08-30 14:30:47 -07:00 |
Jeremy Daggett
|
744cd5d7eb
|
Prefer Regions to Zones in OpenStack APIs
|
2014-08-13 09:58:53 -07:00 |
Andrew Gaul
|
95cfc0d950
|
JCLOUDS-653: Address Guava 18 deprecations
Mostly renaming Objects.toStringHelper to MoreObjects.toStringHelper.
|
2014-08-08 11:12:21 -07:00 |
Jeremy Daggett
|
801aecafea
|
JCLOUDS-40: Unasync OpenStack Nova API
|
2014-07-15 14:29:09 -07:00 |
Andrew Gaul
|
9cdd53b0b7
|
JCLOUDS-546: Remove Javadoc @author annotations
Annotations removed with:
find -name \*.java | xargs sed -i /@author/d
Empty Javadoc removed with multiple iterations of:
find -name \*.java | xargs sed -i -z 's/ \*\n \*\// \*\//'
find -name \*.java | xargs sed -i -z 's/ \* \n \*\// \*\//'
find -name \*.java | xargs sed -i -z 's/\/\*\*\n \*\/\n//'
|
2014-06-07 21:44:54 -07:00 |
Andrew Gaul
|
8d51ad6f87
|
Prefer Guava HttpHeaders over JAX-RS
jclouds code contains more instances of the former and Guava has
additional constants like CONTENT_MD5.
|
2014-05-15 01:55:51 -07:00 |
Andrew Gaul
|
67c2b5f6b9
|
Enable whitespace around Checkstyle rule
|
2014-05-08 18:31:47 -07:00 |
Andrew Gaul
|
828d8790c2
|
Enforce no unused imports via Checkstyle
Removed with:
mvn checkstyle:checkstyle --quiet -Dcheckstyle.output.file=/dev/stdout -Dcheckstyle.output.format=plain | tac | while read i; do echo $i | sed -n 's/\([^:]*\):\([^:]*\):.*/sed -i \2d \1/p' | bash; done
|
2013-12-11 17:27:43 -08:00 |
Everett Toews
|
ab4473561e
|
Style fixes and corrections.
|
2013-11-15 10:46:49 -06:00 |
Everett Toews
|
1013986585
|
Refactored OpenStack pagination. Removed Rackspace pagination. Prefer PaginationOptions.
|
2013-10-24 16:52:25 -05:00 |
Andrew Gaul
|
b3a320e015
|
Address Checkstyle violations
|
2013-05-26 21:03:10 -07:00 |
Everett Toews
|
cbc42fdeb2
|
JCLOUDS-78: Fix record pagination problem. Backfill tests.
|
2013-05-23 11:46:33 -06:00 |
adriancole
|
ed2f18a1af
|
JCLOUDS-31. updated to ASF headers via mvn com.mycila.maven-license-plugin:maven-license-plugin:format
|
2013-05-16 21:30:37 -07:00 |
Andrew Bayer
|
7923009eb5
|
JCLOUDS-37. Fix RAT violations in incubator-jclouds, master branch
|
2013-05-13 19:17:50 -07:00 |
Everett Toews
|
998bfea33e
|
The Rackspace Cloud DNS APIs moved over from labs.
|
2013-04-24 09:07:31 -05:00 |