From f72c5cea805a3f4f02670b3e43f106b26721c86d Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Thu, 29 Jul 2021 17:19:57 -0700 Subject: [PATCH] Remove getClipboardInfo --- core/clipboard.js | 10 ---------- 1 file changed, 10 deletions(-) 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.