b35cea94cd
git-svn-id: file:///home/svn/framework3/trunk@10095 4d416f70-5f16-0410-b530-b9f4589650da
15 lines
376 B
Java
15 lines
376 B
Java
package vuln;
|
|
|
|
/*
|
|
* This is just a placeholder class. Link implements this so it can be
|
|
* replaced after compilation with Map.Entry since a normal compiler will not
|
|
* allow creating a class that implements an interface through inheritance.
|
|
*
|
|
* See Sami Koivu's original blog post for details.
|
|
*/
|
|
public interface Test {
|
|
|
|
public Object getValue() throws Exception;
|
|
|
|
}
|