Skip to content

Commit

Permalink
Fix for checkstyle (#459).
Browse files Browse the repository at this point in the history
  • Loading branch information
ashigeru authored and akirakw committed Dec 22, 2014
1 parent 27eea64 commit 88254a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
*/
public class DecimalValueDriver implements ParquetValueDriver {

static int PRECISION_INT_MAX = 9;
static final int PRECISION_INT_MAX = 9;

static int PRECISION_LONG_MAX = 18;
static final int PRECISION_LONG_MAX = 18;

private final int precision;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ public static long getTimeOfDayNanos(DateTime dateTime) {
}

/**
* Returns the elapsed days from Julian day
* Returns the elapsed days from Julian day.
* @param julianDayNumber the Julian day
* @param nanoTime time of day in nanos
* @return the elapsed days
Expand Down

0 comments on commit 88254a9

Please sign in to comment.