Skip to content

Commit 47554a2

Browse files
committed
Fixed style issues
1 parent 006a48e commit 47554a2

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/main/java/org/influxdb/annotation/Column.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
public @interface Column {
3434

3535
/**
36-
* If unset, the annotated field's name will be used as the column name
36+
* If unset, the annotated field's name will be used as the column name.
3737
*/
3838
String name() default "";
3939

src/main/java/org/influxdb/impl/InfluxDBResultMapper.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,8 @@ static <T> boolean fieldValueModified(final Class<?> fieldType, final Field fiel
362362
}
363363

364364
static <T> boolean fieldValueForPrimitivesModified(final Class<?> fieldType, final Field field, final T object,
365-
final Object value) throws IllegalArgumentException, IllegalAccessException {
365+
final Object value)
366+
throws IllegalArgumentException, IllegalAccessException {
366367
if (double.class.isAssignableFrom(fieldType)) {
367368
field.setDouble(object, ((Double) value).doubleValue());
368369
return true;
@@ -383,7 +384,8 @@ static <T> boolean fieldValueForPrimitivesModified(final Class<?> fieldType, fin
383384
}
384385

385386
static <T> boolean fieldValueForPrimitiveWrappersModified(final Class<?> fieldType, final Field field, final T object,
386-
final Object value) throws IllegalArgumentException, IllegalAccessException {
387+
final Object value)
388+
throws IllegalArgumentException, IllegalAccessException {
387389
if (Double.class.isAssignableFrom(fieldType)) {
388390
field.set(object, value);
389391
return true;

0 commit comments

Comments
 (0)