| Author |
Question on HF Servlets & JSP 2nd - The beer expert under Java 5
|
Ellery
Greenhorn
Joined: Dec 15, 2008
Posts: 2
|
|
Dear all I am now reading the book of HF Servlet & JSP 2nd and found the following code: And the BeerExpert class: Well, the question is that, BeerSelect.java cannot be compiled with the following well-know warning: Actually I know that, when I use the @SuppressWarnings("unchecked") statement above the "List<String> result = be.getBrands(c);", the code can be compiled nicely. However, I don't want to avoid that everytime when I meet this error. But the question is : how can I change to have it compiled? Can anyone please help me to solve this problem? Thank you very much in advance for all your help.
|
 |
Vijitha Kumara
Bartender
Joined: Mar 24, 2008
Posts: 3670
|
|
Your getBrands method in BeerExpert class may return a List of Strings. That will solve the problem (actually that's a warning not a compiler error), though you may be able to run the code without it
|
SCJP 5 | SCWCD 5
[How to ask questions] [Twitter]
|
 |
Ellery
Greenhorn
Joined: Dec 15, 2008
Posts: 2
|
|
Thank you very much, it works now! Javaranch is really a nice place
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56192
|
|
|
"alucard", please check your private messages for an important administrative matter.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: Question on HF Servlets & JSP 2nd - The beer expert under Java 5
|
|
|