[tests] javadoc highlighting tests merger and cleanup

This commit is contained in:
Roman Shevchenko
2016-03-07 16:02:31 +01:00
parent ec4b8b92eb
commit f759a56f8f
43 changed files with 195 additions and 337 deletions

View File

@@ -0,0 +1,9 @@
class Foo {
/**
* description
*
* @param i this is a parameter
* @param <T> type of object to do something with.
*/
public <T> void foo(T i){}
}