diff --git a/core/clipboard.js b/core/clipboard.js index c6a9bb8a0..9810836f9 100644 --- a/core/clipboard.js +++ b/core/clipboard.js @@ -23,16 +23,6 @@ const ICopyable = goog.requireType('Blockly.ICopyable'); */ let copyData = null; -/** - * Get the current contents of the clipboard and associated metadata. - * @return {?ICopyable.CopyData} An - * object containing the clipboard contents and associated metadata. - */ -const getClipboardInfo = function() { - return copyData; -}; -exports.getClipboardInfo = getClipboardInfo; - /** * Copy a block or workspace comment onto the local clipboard. * @param {!ICopyable} toCopy Block or Workspace Comment to be copied.