mirror of https://github.com/Wilfred/difftastic/
Add Java test file
parent
85f2376dbb
commit
ceb42a6ad2
@ -0,0 +1,13 @@
|
||||
class Foo {
|
||||
/**
|
||||
* Hello world.
|
||||
*
|
||||
* <p>More stuff here.</p>
|
||||
*
|
||||
* @param stuff {@code String} foo bar
|
||||
* @returns {@code int}
|
||||
*/
|
||||
protected static int blah() {
|
||||
throw new Exception("before");
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,13 @@
|
||||
class Foo {
|
||||
/**
|
||||
* Hello world.
|
||||
*
|
||||
* <p>More stuff here.</p>
|
||||
*
|
||||
* @param stuff {@code String} foo bar
|
||||
* @returns {@code Other}
|
||||
*/
|
||||
public static Other blah() {
|
||||
throw new Exception("before");
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue