Skip to content

Commit b8d884b

Browse files
committed
Remove unused constructors in Color
1 parent b42b7ff commit b8d884b

File tree

3 files changed

+0
-15
lines changed
  • bundles/org.eclipse.swt/Eclipse SWT

3 files changed

+0
-15
lines changed

bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Color.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@ public final class Color extends Resource {
4848
*/
4949
public double [] handle;
5050

51-
Color() {
52-
super();
53-
}
54-
5551
Color(Device device) {
5652
super(device);
5753
}

bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Color.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,6 @@ public final class Color extends Resource {
5050
public GdkRGBA handle;
5151
int alpha = 0;
5252

53-
Color() {
54-
super();
55-
}
56-
5753
Color(Device device) {
5854
super(device);
5955
}

bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Color.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,6 @@ public final class Color extends Resource {
5050
public int handle;
5151
int alpha = 255;
5252

53-
/**
54-
* Prevents uninitialized instances from being created outside the package.
55-
*/
56-
Color() {
57-
super();
58-
}
59-
6053
/**
6154
* Prevents uninitialized instances from being created outside the package.
6255
*/

0 commit comments

Comments
 (0)