Remove getClipboardInfo

This commit is contained in:
Rachel Fenichel
2021-07-29 17:19:57 -07:00
parent f7549f73a6
commit f72c5cea80

View File

@@ -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.