mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 02:33:48 +07:00
13 lines
270 B
Java
13 lines
270 B
Java
/**
|
|
* Created by IntelliJ IDEA.
|
|
* User: db
|
|
* Date: 21.09.11
|
|
* Time: 23:57
|
|
* To change this template use File | Settings | File Templates.
|
|
*/
|
|
public class M {
|
|
public int g (final A a, final B b, final C c){
|
|
return a.f() + b.f() + c.f() + c.g();
|
|
}
|
|
}
|