diff --git a/FFmpegConvert.iml b/.idea/FFmpegConvert.iml
similarity index 100%
rename from FFmpegConvert.iml
rename to .idea/FFmpegConvert.iml
diff --git a/.idea/FFmpegConvert1.iml b/.idea/FFmpegConvert1.iml
deleted file mode 100644
index c90834f..0000000
--- a/.idea/FFmpegConvert1.iml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
The string to print.
- * @throws IOExceptionIf the writer can't be written to.
+ * @throws IOExceptionIf the writer fails to write.
*/ private static void print(String input) throws IOException { WRITER.write(input); WRITER.flush(); } - + /** * Prints a string and a line break * @param inputThe string to print.
- * @throws IOExceptionIf the writer can't be written to.
+ * @throws IOExceptionIf the writer fails to write.
*/ private static void printl(String input) throws IOException { WRITER.write(input); @@ -213,11 +213,10 @@ public class Main { /** * Initializes the anime converter - * @throws IOExceptionIf something goes wrong.
+ * @throws IOExceptionIf reading or writing fails.
*/ private static void animeConverter() throws IOException { - printl("[Audio languages jpn,eng,ger,fre] [Subtitle languages eng,ger,fre] " + - "[Convert to stereo if necessary true/false] [Prevent signs&songs subtitles true/false]\nYour input: "); + printl("[Audio languages jpn,eng,ger,fre] [Subtitle languages eng,ger,fre] [Convert to stereo if necessary true/false] [Prevent signs&songs subtitles true/false]\nYour input: "); ListThe prompt shown to the user.
* @returnThe non-empty choice given by the user.
- * @throws IOExceptionIf the reader can't be read.
+ * @throws IOExceptionIf reading or writing fails.
*/ private static String getChoice(String prompt) throws IOException { printl(prompt);