Skip to content

Commit cd22842

Browse files
committed
fix some pmd warnings
1 parent 05b8ff1 commit cd22842

File tree

4 files changed

+0
-28
lines changed

4 files changed

+0
-28
lines changed

src/main/java/org/htmlunit/javascript/host/BroadcastChannel.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,6 @@ public class BroadcastChannel extends EventTarget {
4646

4747
private String name_;
4848

49-
/**
50-
* Default constructor.
51-
*/
52-
public BroadcastChannel() {
53-
super();
54-
}
55-
5649
/**
5750
* JavaScript constructor.
5851
* @param cx the current context

src/main/java/org/htmlunit/javascript/host/draganddrop/DataTransfer.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,6 @@ public class DataTransfer extends HtmlUnitScriptable {
3131

3232
private DataTransferItemList items_;
3333

34-
/**
35-
* Ctor.
36-
*/
37-
public DataTransfer() {
38-
super();
39-
}
40-
4134
/**
4235
* JavaScript constructor.
4336
*/

src/main/java/org/htmlunit/javascript/host/draganddrop/DataTransferItemList.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,6 @@ public class DataTransferItemList extends HtmlUnitScriptable {
4141
private ArrayList<DataTransferItem> items_;
4242
private FileList fileList_;
4343

44-
/**
45-
* Creates an instance.
46-
*/
47-
public DataTransferItemList() {
48-
super();
49-
}
50-
5144
/**
5245
* JavaScript constructor.
5346
*/

src/main/java/org/htmlunit/javascript/host/worker/WorkerGlobalScope.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,6 @@
2929
*/
3030
@JsxClass
3131
public class WorkerGlobalScope extends EventTarget implements WindowOrWorkerGlobalScope {
32-
/**
33-
* For prototype instantiation.
34-
*/
35-
public WorkerGlobalScope() {
36-
// prototype constructor
37-
super();
38-
}
3932

4033
/**
4134
* JavaScript constructor.

0 commit comments

Comments
 (0)