diff options
Diffstat (limited to 'tests/bugs160/pr225916/Test.java')
-rw-r--r-- | tests/bugs160/pr225916/Test.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/bugs160/pr225916/Test.java b/tests/bugs160/pr225916/Test.java new file mode 100644 index 000000000..f736ece95 --- /dev/null +++ b/tests/bugs160/pr225916/Test.java @@ -0,0 +1,8 @@ +package test.jmx; + +public class Test implements TestMBean { + + public String test() { + return "test"; + } +} |