/hg/icedtea-web: UnsignedAppletTrustConfirmation.java (stripFile...

jvanek at icedtea.classpath.org jvanek at icedtea.classpath.org
Thu Sep 10 09:50:14 UTC 2015


changeset 063bf4ec5756 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=063bf4ec5756
author: Jiri Vanek <jvanek at redhat.com>
date: Thu Sep 10 11:50:01 2015 +0200

	UnsignedAppletTrustConfirmation.java (stripFileImp) fixed typo on variable of normlaized to normalized


diffstat:

 ChangeLog                                                                                      |   6 ++++
 netx/net/sourceforge/jnlp/security/appletextendedsecurity/UnsignedAppletTrustConfirmation.java |  14 +++++-----
 2 files changed, 13 insertions(+), 7 deletions(-)

diffs (48 lines):

diff -r d50a9b483c35 -r 063bf4ec5756 ChangeLog
--- a/ChangeLog	Wed Sep 09 16:41:53 2015 +0200
+++ b/ChangeLog	Thu Sep 10 11:50:01 2015 +0200
@@ -1,3 +1,9 @@
+2015-09-10  Jiri Vanek  <jvanek at redhat.com>
+
+	* netx/net/sourceforge/jnlp/security/appletextendedsecurity/UnsignedAppletTrustConfirmation.java:
+ 	(stripFileImp) fixed typo on variable of normlaized to normalized
+
+
 2015-09-09  Jacob Wisor  <gitne at icedtea.classpath.org>
 
 	* .hgignore: Fix regex patterns of files ignored by Mercurial
diff -r d50a9b483c35 -r 063bf4ec5756 netx/net/sourceforge/jnlp/security/appletextendedsecurity/UnsignedAppletTrustConfirmation.java
--- a/netx/net/sourceforge/jnlp/security/appletextendedsecurity/UnsignedAppletTrustConfirmation.java	Wed Sep 09 16:41:53 2015 +0200
+++ b/netx/net/sourceforge/jnlp/security/appletextendedsecurity/UnsignedAppletTrustConfirmation.java	Thu Sep 10 11:50:01 2015 +0200
@@ -255,18 +255,18 @@
     
     private static String stripFileImp(URL documentbase) {
         try {
-            String normlaized = UrlUtils.normalizeUrlAndStripParams(documentbase).toExternalForm().trim();
-            if (normlaized.endsWith("/") || normlaized.endsWith("\\")) {
-                return normlaized;
+            String normalized = UrlUtils.normalizeUrlAndStripParams(documentbase).toExternalForm().trim();
+            if (normalized.endsWith("/") || normalized.endsWith("\\")) {
+                return normalized;
             }
-            URL middleway = new URL(normlaized);
+            URL middleway = new URL(normalized);
             String file = middleway.getFile();
             int i = Math.max(file.lastIndexOf('/'), file.lastIndexOf('\\'));
             if (i<0){
-                return normlaized;
+                return normalized;
             }
             String parent = file.substring(0, i+1);
-            String stripped = normlaized.replace(file, parent);
+            String stripped = normalized.replace(file, parent);
             return stripped;
         } catch (Exception ex) {
             OutputController.getLogger().log(ex);
@@ -291,4 +291,4 @@
         return s + "/";
     }
 
-}
\ No newline at end of file
+}


More information about the distro-pkg-dev mailing list