@NotNull
 public static List<String> loadLines(@NotNull BufferedReader reader) throws IOException {
   return FileUtilRt.loadLines(reader);
 }
 @NotNull
 public static List<String> loadLines(@NotNull String path) throws IOException {
   return FileUtilRt.loadLines(path);
 }
 @NotNull
 public static List<String> loadLines(@NotNull String path, @Nullable @NonNls String encoding)
     throws IOException {
   return FileUtilRt.loadLines(path, encoding);
 }
 @NotNull
 public static List<String> loadLines(@NotNull File file) throws IOException {
   return FileUtilRt.loadLines(file);
 }