Code formatting
authorSvjatoslav Agejenko <svjatoslav@svjatoslav.eu>
Fri, 14 Sep 2018 20:39:54 +0000 (23:39 +0300)
committerSvjatoslav Agejenko <svjatoslav@svjatoslav.eu>
Fri, 14 Sep 2018 20:39:54 +0000 (23:39 +0300)
13 files changed:
src/main/java/eu/svjatoslav/meviz/Main.java
src/main/java/eu/svjatoslav/meviz/Module.java
src/main/java/eu/svjatoslav/meviz/bomremove/BomStrippingOptions.java
src/main/java/eu/svjatoslav/meviz/encoder/EncodingPlan.java
src/main/java/eu/svjatoslav/meviz/htmlindexer/Constants.java
src/main/java/eu/svjatoslav/meviz/htmlindexer/ImageFormatError.java
src/main/java/eu/svjatoslav/meviz/htmlindexer/UrlParamEncoder.java
src/main/java/eu/svjatoslav/meviz/htmlindexer/WebIndexer.java
src/main/java/eu/svjatoslav/meviz/htmlindexer/metadata/MetadadaHelper.java
src/main/java/eu/svjatoslav/meviz/renamer/Main.java
src/main/java/eu/svjatoslav/meviz/renamer/RenamingOptions.java
src/main/java/eu/svjatoslav/meviz/replace/CommandlineOptions.java
src/main/java/eu/svjatoslav/meviz/replace/Main.java

index 5ff33bc..165241f 100755 (executable)
@@ -1,7 +1,7 @@
 /*
  * Meviz - Various tools collection to work with multimedia.
  * Copyright (C) 2012 -- 2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- * 
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of version 2 of the GNU General Public License
  * as published by the Free Software Foundation.
index d611eed..844c9c9 100755 (executable)
@@ -1,7 +1,7 @@
 /*
  * Meviz - Various tools collection to work with multimedia.
  * Copyright (C) 2012 -- 2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- * 
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of version 2 of the GNU General Public License
  * as published by the Free Software Foundation.
index e3dccd3..5f9925e 100755 (executable)
@@ -1,7 +1,7 @@
 /*
  * Meviz - Various tools collection to work with multimedia.
  * Copyright (C) 2012 -- 2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- * 
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of version 2 of the GNU General Public License
  * as published by the Free Software Foundation.
index 0d763de..fca63de 100755 (executable)
@@ -1,7 +1,7 @@
 /*
  * Meviz - Various tools collection to work with multimedia.
  * Copyright (C) 2012 -- 2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- * 
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of version 2 of the GNU General Public License
  * as published by the Free Software Foundation.
index e47f702..4459416 100755 (executable)
@@ -1,7 +1,7 @@
 /*
  * Meviz - Various tools collection to work with multimedia.
  * Copyright (C) 2012 -- 2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- * 
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of version 2 of the GNU General Public License
  * as published by the Free Software Foundation.
index 9791855..5f969ca 100755 (executable)
@@ -1,7 +1,7 @@
 /*
  * Meviz - Various tools collection to work with multimedia.
  * Copyright (C) 2012 -- 2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- * 
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of version 2 of the GNU General Public License
  * as published by the Free Software Foundation.
index 15d9302..51af9c7 100755 (executable)
@@ -1,7 +1,7 @@
 /*
  * Svjatoslav Commons - shared library of common functionality.
  * Copyright ©2012-2014, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- * 
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of version 3 of the GNU Lesser General Public License
  * or later as published by the Free Software Foundation.
@@ -11,45 +11,45 @@ package eu.svjatoslav.meviz.htmlindexer;
 
 public class UrlParamEncoder {
 
-       public static String decode(final String source) {
+    public static String decode(final String source) {
 
-               final String result = source.replaceAll("%20", " ");
+        final String result = source.replaceAll("%20", " ");
 
-               return result;
-       }
+        return result;
+    }
 
-       public static String encode(final String source) {
+    public static String encode(final String source) {
 
-               final StringBuffer buffer = new StringBuffer();
-               for (int i = 0; i < source.length(); i++) {
-                       boolean replaced = false;
-                       final char character = source.charAt(i);
+        final StringBuffer buffer = new StringBuffer();
+        for (int i = 0; i < source.length(); i++) {
+            boolean replaced = false;
+            final char character = source.charAt(i);
 
-                       if (character == ' ') {
-                               buffer.append("%20");
-                               replaced = true;
-                       }
+            if (character == ' ') {
+                buffer.append("%20");
+                replaced = true;
+            }
 
-                       if (character == '?') {
-                               buffer.append("%3F");
-                               replaced = true;
-                       }
+            if (character == '?') {
+                buffer.append("%3F");
+                replaced = true;
+            }
 
-                       if (character == ',') {
-                               buffer.append("%2C");
-                               replaced = true;
-                       }
+            if (character == ',') {
+                buffer.append("%2C");
+                replaced = true;
+            }
 
-                       if (character == ':') {
-                               buffer.append("%3A");
-                               replaced = true;
-                       }
+            if (character == ':') {
+                buffer.append("%3A");
+                replaced = true;
+            }
 
-                       if (!replaced)
-                               buffer.append(character);
-               }
+            if (!replaced)
+                buffer.append(character);
+        }
 
-               return buffer.toString();
-       }
+        return buffer.toString();
+    }
 
 }
index dba6f5a..d2aabcd 100644 (file)
@@ -61,7 +61,7 @@ public class WebIndexer extends AbstractIndexer {
     private DirectoryMetadata getMetadataForPath(final String requestPath)
             throws ClassNotFoundException, IOException {
 
-        final String urlString = globalPrefix + Utils.urlEncode(requestPath) +"/.thumbnails/metadata_6.dat";
+        final String urlString = globalPrefix + Utils.urlEncode(requestPath) + "/.thumbnails/metadata_6.dat";
 
         for (int i = 0; true; i++)
             try {
index 234bca2..713fb9e 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Meviz - Various tools collection to work with multimedia.
  * Copyright (C) 2012 -- 2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- * 
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of version 2 of the GNU General Public License
  * as published by the Free Software Foundation.
index f4fc359..6277932 100755 (executable)
@@ -1,7 +1,7 @@
 /*
  * Meviz - Various tools collection to work with multimedia.
  * Copyright (C) 2012 -- 2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- * 
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of version 2 of the GNU General Public License
  * as published by the Free Software Foundation.
index d9869fe..789964b 100755 (executable)
@@ -1,7 +1,7 @@
 /*
  * Meviz - Various tools collection to work with multimedia.
  * Copyright (C) 2012 -- 2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- * 
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of version 2 of the GNU General Public License
  * as published by the Free Software Foundation.
index b8d7944..346f6cc 100755 (executable)
@@ -1,7 +1,7 @@
 /*
  * Meviz - Various tools collection to work with multimedia.
  * Copyright (C) 2012 -- 2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- * 
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of version 2 of the GNU General Public License
  * as published by the Free Software Foundation.
index 48d98a5..c77ce60 100755 (executable)
@@ -1,7 +1,7 @@
 /*
  * Meviz - Various tools collection to work with multimedia.
  * Copyright (C) 2012 -- 2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- * 
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of version 2 of the GNU General Public License
  * as published by the Free Software Foundation.