Kaydet (Commit) dfcb982a authored tarafından Noel Grandin's avatar Noel Grandin

java:no need to explicitly create these constructors

the compiler will do it for you

Change-Id: I770670e70a43664a87ce28b48fc822d891d8fb41
üst e7e0d46d
...@@ -2210,7 +2210,6 @@ final class TestAny { ...@@ -2210,7 +2210,6 @@ final class TestAny {
} }
private static class BaseException extends com.sun.star.uno.Exception { private static class BaseException extends com.sun.star.uno.Exception {
public BaseException() {}
@Override @Override
public boolean equals(Object obj) { public boolean equals(Object obj) {
...@@ -2219,7 +2218,6 @@ final class TestAny { ...@@ -2219,7 +2218,6 @@ final class TestAny {
} }
private static class DerivedException extends BaseException { private static class DerivedException extends BaseException {
public DerivedException() {}
@Override @Override
public boolean equals(Object obj) { public boolean equals(Object obj) {
...@@ -2230,8 +2228,6 @@ final class TestAny { ...@@ -2230,8 +2228,6 @@ final class TestAny {
private static class BaseRuntimeException private static class BaseRuntimeException
extends com.sun.star.uno.RuntimeException extends com.sun.star.uno.RuntimeException
{ {
public BaseRuntimeException() {}
@Override @Override
public boolean equals(Object obj) { public boolean equals(Object obj) {
return obj != null return obj != null
...@@ -2241,8 +2237,6 @@ final class TestAny { ...@@ -2241,8 +2237,6 @@ final class TestAny {
private static class DerivedRuntimeException extends BaseRuntimeException private static class DerivedRuntimeException extends BaseRuntimeException
{ {
public DerivedRuntimeException() {}
@Override @Override
public boolean equals(Object obj) { public boolean equals(Object obj) {
return obj != null return obj != null
......
...@@ -24,10 +24,6 @@ public class AWeakBase extends WeakBase implements XEventListener ...@@ -24,10 +24,6 @@ public class AWeakBase extends WeakBase implements XEventListener
{ {
public int nDisposingCalled= 0; public int nDisposingCalled= 0;
public AWeakBase()
{
}
public void disposing(com.sun.star.lang.EventObject eventObject) public void disposing(com.sun.star.lang.EventObject eventObject)
{ {
nDisposingCalled++; nDisposingCalled++;
......
...@@ -23,12 +23,6 @@ package helper; ...@@ -23,12 +23,6 @@ package helper;
*/ */
public class WindowListener implements com.sun.star.awt.XWindowListener { public class WindowListener implements com.sun.star.awt.XWindowListener {
/**
* Creates a new WindowListener
*/
public WindowListener() {
}
/** /**
* The window hidden event * The window hidden event
*/ */
......
...@@ -122,13 +122,6 @@ public class DBTools { ...@@ -122,13 +122,6 @@ public class DBTools {
*/ */
private String[] TableFilter = null ; private String[] TableFilter = null ;
/**
* Creates an empty instance.
*/
public DataSourceInfo()
{
}
/** /**
* Creates new <code>com.sun.star.sdb.DataSource</code> service * Creates new <code>com.sun.star.sdb.DataSource</code> service
* instance and copies all fields (which are not null) to * instance and copies all fields (which are not null) to
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment