mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
removed default file header, because it adds no information but subtracts attention and space
This commit is contained in:
-7
@@ -1,10 +1,3 @@
|
||||
/**
|
||||
* Created by IntelliJ IDEA.
|
||||
* User: db
|
||||
* Date: 21.09.11
|
||||
* Time: 23:55
|
||||
* To change this template use File | Settings | File Templates.
|
||||
*/
|
||||
public abstract class A {
|
||||
abstract int f ();
|
||||
}
|
||||
|
||||
-7
@@ -1,9 +1,2 @@
|
||||
/**
|
||||
* Created by IntelliJ IDEA.
|
||||
* User: db
|
||||
* Date: 21.09.11
|
||||
* Time: 23:56
|
||||
* To change this template use File | Settings | File Templates.
|
||||
*/
|
||||
public abstract class B extends A {
|
||||
}
|
||||
|
||||
-7
@@ -1,10 +1,3 @@
|
||||
/**
|
||||
* Created by IntelliJ IDEA.
|
||||
* User: db
|
||||
* Date: 21.09.11
|
||||
* Time: 23:56
|
||||
* To change this template use File | Settings | File Templates.
|
||||
*/
|
||||
public abstract class C extends A {
|
||||
abstract int g();
|
||||
}
|
||||
|
||||
-7
@@ -1,10 +1,3 @@
|
||||
/**
|
||||
* 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();
|
||||
|
||||
Reference in New Issue
Block a user