Skip to content

Commit 77404c2

Browse files
DataTransferItemList should be a class with a non-public constructor
Co-authored-by: Arman Bilge <armanbilge@gmail.com>
1 parent c3d4492 commit 77404c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dom/src/main/scala/org/scalajs/dom/DataTransferItemList.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import scala.scalajs.js.annotation.JSGlobal
1414
*/
1515
@js.native
1616
@JSGlobal
17-
class DataTransferItemList extends js.Object {
17+
class DataTransferItemList private[this] extends js.Object {
1818

1919
/** Returns the number of items in the drag data store. */
2020
def length: Int = js.native

0 commit comments

Comments
 (0)