Quick Search:

Mode

Context

Displaying 3 lines of context. None | Less | More | Full

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

39
 
63
 
63
 
ProductMapper.java
_> 88 
  99 public class ProductMapper {
  1010 
<> 11 -    public List process(ResultSet resultSet) {
   11+    public List<Product> process(ResultSet resultSet) {
1212         try {
<> 13 -            List products = new ArrayList();
   13+            List<Product> products = new ArrayList<Product>();
<_ 1414             while (resultSet.next()) {
  1515                 Product p = new Product();
  1616                 p.setName(resultSet.getString("name"));