summaryrefslogtreecommitdiffstats
path: root/libjava/classpath/java/awt/dnd/DropTargetDropEvent.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/java/awt/dnd/DropTargetDropEvent.java')
-rw-r--r--libjava/classpath/java/awt/dnd/DropTargetDropEvent.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/classpath/java/awt/dnd/DropTargetDropEvent.java b/libjava/classpath/java/awt/dnd/DropTargetDropEvent.java
index dd85ef712c5..333f8c6cc5c 100644
--- a/libjava/classpath/java/awt/dnd/DropTargetDropEvent.java
+++ b/libjava/classpath/java/awt/dnd/DropTargetDropEvent.java
@@ -56,7 +56,7 @@ public class DropTargetDropEvent extends DropTargetEvent
private final int actions;
private final Point location;
private final boolean isLocalTx;
-
+
/**
* Initializes a <code>DropTargetDropEvent</code>. By default this constructor
* assumes that the target is not int same JVM.
@@ -103,16 +103,16 @@ public class DropTargetDropEvent extends DropTargetEvent
| DnDConstants.ACTION_COPY_OR_MOVE
| DnDConstants.ACTION_LINK
| DnDConstants.ACTION_REFERENCE;
-
+
if (~(actions ^ actionsMask) != 0)
throw new IllegalArgumentException();
-
+
this.dropAction = dropAction;
this.actions = actions;
this.location = location;
this.isLocalTx = isLocalTx;
}
-
+
public Point getLocation()
{
return location;
OpenPOWER on IntegriCloud