petergardfjall
|
7a9b0bae13
|
Fix for issue #1035: glesys provider appears to be incompatible with current glesys API version
|
2012-12-06 08:59:59 +01:00 |
Adrian Cole
|
878ec1bcab
|
undid Serializable and added checkstyle InterfaceIsType:allowMarkerInterfaces=false
|
2012-11-18 09:23:44 -08:00 |
Andrew Gaul
|
3ad36d25d5
|
Enforce no unnecessary parentheses via Checkstyle
|
2012-11-10 13:22:12 -08:00 |
Andrew Gaul
|
3d191253ec
|
Enforce use of Collection helpers via Checkstyle
This ensures that we do not repeat the type name. Some instances remain
due to auto-generated code in dmtf/cim/Cim*.
|
2012-11-04 20:45:49 -08:00 |
Andrew Gaul
|
bfa3458b97
|
Prefer specific asserts where possible
|
2012-11-04 14:40:24 -08:00 |
Andrew Gaul
|
08b9982384
|
Enforce modifier order via Checkstyle
Also fix violations, via:
find -name \*.java | xargs sed -i 's/final static/static final/'
find -name \*.java | xargs sed -i 's/static private/private static/'
find -name \*.java | xargs sed -i 's/static abstract/abstract static/'
|
2012-11-01 20:01:30 -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
|
e7dde3aff5
|
Address minor copyright notice typos
|
2012-10-28 23:27:56 -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
|
696f24280a
|
glesys now a provider
|
2012-09-16 21:31:12 -07:00 |