リビジョン 1c75810c
| learn/java/lambda/HelloLambda/src/hellolambda/HelloImpl.java | ||
|---|---|---|
|
* To change this template file, choose Tools | Templates
|
||
|
* and open the template in the editor.
|
||
|
*/
|
||
|
|
||
|
package hellolambda;
|
||
|
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author toru
|
||
|
*/
|
||
|
public class HelloImpl implements Hello {
|
||
|
|
||
|
|
||
|
void some() {
|
||
|
List list = new ArrayList();
|
||
|
list.add("Alfa");
|
||
|
}
|
||
|
}
|
||
コンパイル警告が出るコードを追加
JenkinsのWarnings plugin検証のため。