--- old/src/share/classes/sun/awt/dnd/SunDropTargetContextPeer.java 2014-04-10 11:15:22.889274072 +0400 +++ new/src/share/classes/sun/awt/dnd/SunDropTargetContextPeer.java 2014-04-10 11:15:22.581274063 +0400 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -239,6 +239,8 @@ if (localTransferable != null) { return localTransferable.getTransferData(df); + } else if (df.isMimeTypeEqual(DataFlavor.javaJVMLocalObjectMimeType)) { + return null; } if (dropStatus != STATUS_ACCEPT || dropComplete) {