[tests] message texts in Javadoc highlighting tests

This commit is contained in:
Roman Shevchenko
2017-04-07 18:48:45 +02:00
parent a31c85b322
commit 2a47148d94
22 changed files with 100 additions and 104 deletions

View File

@@ -1,10 +1,10 @@
import java.util.*;
class Test<T> {
public void read(List<T> list){}
class Test<T> {
public void read(List<T> list) {}
/**
* @see #read(java.util.List<warning><</warning>T<warning>></warning>)
* @see #read(java.util.List<warning descr="Illegal character"><</warning>T<warning descr="Illegal character">></warning>)
*/
public void write(){}
public void write() {}
}