diff options
author | Keith Packard <keithp@keithp.com> | 2014-05-25 21:08:44 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-05-25 21:08:44 -0700 |
commit | 4df84dd5d007120f54cbda380789306608f2fc46 (patch) | |
tree | da9ed46d946d6063104518b1ed12df916ebe8d2c | |
parent | f0216d721ed13f4d3dc608bb6ad8f83732b27c0a (diff) |
micropeak: Add -Xlint:unchecked to javac line
This shows missing parametric type errors
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | micropeak/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/micropeak/Makefile.am b/micropeak/Makefile.am index f6f0bdb2..e38a0f81 100644 --- a/micropeak/Makefile.am +++ b/micropeak/Makefile.am @@ -1,5 +1,5 @@ JAVAROOT=classes -AM_JAVACFLAGS=-target 1.6 -encoding UTF-8 -Xlint:deprecation -source 6 +AM_JAVACFLAGS=-target 1.6 -encoding UTF-8 -Xlint:deprecation -Xlint:unchecked -source 6 man_MANS=micropeak.1 |