summaryrefslogtreecommitdiff
path: root/bridges
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-05 13:56:05 +0200
committerNoel Grandin <noel@peralex.com>2015-11-05 14:55:14 +0200
commitdfcb982ae8810e22204bc15fd7c119a903900a53 (patch)
treec5accc2d5dbe9726004f14928f788677c16d1eb6 /bridges
parente7e0d46dba7b1016968a133330bca23a4bf668ec (diff)
java:no need to explicitly create these constructors
the compiler will do it for you Change-Id: I770670e70a43664a87ce28b48fc822d891d8fb41
Diffstat (limited to 'bridges')
-rw-r--r--bridges/test/java_uno/any/TestAny.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/bridges/test/java_uno/any/TestAny.java b/bridges/test/java_uno/any/TestAny.java
index 1e1f066dde06..dcc77fd5c2fb 100644
--- a/bridges/test/java_uno/any/TestAny.java
+++ b/bridges/test/java_uno/any/TestAny.java
@@ -2210,7 +2210,6 @@ final class TestAny {
}
private static class BaseException extends com.sun.star.uno.Exception {
- public BaseException() {}
@Override
public boolean equals(Object obj) {
@@ -2219,7 +2218,6 @@ final class TestAny {
}
private static class DerivedException extends BaseException {
- public DerivedException() {}
@Override
public boolean equals(Object obj) {
@@ -2230,8 +2228,6 @@ final class TestAny {
private static class BaseRuntimeException
extends com.sun.star.uno.RuntimeException
{
- public BaseRuntimeException() {}
-
@Override
public boolean equals(Object obj) {
return obj != null
@@ -2241,8 +2237,6 @@ final class TestAny {
private static class DerivedRuntimeException extends BaseRuntimeException
{
- public DerivedRuntimeException() {}
-
@Override
public boolean equals(Object obj) {
return obj != null