From 022b16c8e6851b6a6e56ea2261c43914f9177476 Mon Sep 17 00:00:00 2001 From: Anuken Date: Fri, 25 May 2018 01:10:12 -0400 Subject: [PATCH] Updated Platform.java --- core/src/io/anuke/mindustry/core/Platform.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/io/anuke/mindustry/core/Platform.java b/core/src/io/anuke/mindustry/core/Platform.java index 88b971cfca..1c3ab23003 100644 --- a/core/src/io/anuke/mindustry/core/Platform.java +++ b/core/src/io/anuke/mindustry/core/Platform.java @@ -71,9 +71,9 @@ public abstract class Platform { * @param content Type of files to be loaded * @param cons Selection listener * @param open Whether to open or save files. - * @param filetypes List of file extensions to filter. + * @param filetype File extensions to filter. */ - public void showFileChooser(String text, String content, Consumer cons, boolean open, String... filetypes){} + public void showFileChooser(String text, String content, Consumer cons, boolean open, String filetype){} /**Use the default thread provider from the kryonet module for this.*/ public ThreadProvider getThreadProvider(){ return new ThreadProvider() {