Changeset b9ca96abb71658e198aba196c22bfab3a1840909
- Timestamp:
- 11/15/09 15:51:21
(4 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1258300281 +0000
- git-parent:
[a559c4e0ffb0db177961118cc4e7928a441374ac]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1258300281 +0000
- Message:
lint and suppress warnings, refs #34
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r5cffd17 |
rb9ca96a |
|
| 67 | 67 | reconnoiter.jar: $(JAVA) |
|---|
| 68 | 68 | @echo "- compiling files" |
|---|
| 69 | | @$(JAVAC) -g -cp `echo $(SUPPORT) | sed -e 's/ /:/g;'` $(JAVA) |
|---|
| | 69 | @$(JAVAC) -Xlint:unchecked -g -cp `echo $(SUPPORT) | sed -e 's/ /:/g;'` $(JAVA) |
|---|
| 70 | 70 | @echo "- creating jar" |
|---|
| 71 | 71 | @$(JAR) cf $@ `find com -name \*.class` |
|---|
| r5cffd17 |
rb9ca96a |
|
| 19 | 19 | private int len; |
|---|
| 20 | 20 | |
|---|
| | 21 | @SuppressWarnings("unchecked") |
|---|
| 21 | 22 | public StratconMessageFactory(Class clazz) |
|---|
| 22 | 23 | throws NoSuchMethodException, IllegalAccessException, |
|---|