Selective merge of commanding branch.

This commit is contained in:
MattBDev
2019-10-23 12:58:36 -04:00
parent 8768085479
commit fd408c64ed
17 changed files with 259 additions and 227 deletions

View File

@ -104,18 +104,18 @@ public interface ClipboardFormat {
Set<String> getFileExtensions();
/**
* Set the player's clipboard
* @param player
* Set the actor's clipboard
* @param actor
* @param uri
* @param in
* @throws IOException
* @param inputStream the input stream
* @throws IOException thrown on I/O error
*/
default URIClipboardHolder hold(Actor actor, URI uri, InputStream in) throws IOException {
default URIClipboardHolder hold(Actor actor, URI uri, InputStream inputStream) throws IOException {
checkNotNull(actor);
checkNotNull(uri);
checkNotNull(in);
checkNotNull(inputStream);
final ClipboardReader reader = getReader(in);
final ClipboardReader reader = getReader(inputStream);
final Clipboard clipboard;