[java-openws COMMIT] /branches/REL_1/src/main/java/org/opensaml/util/resource/FileBackedHttpResource.java

noreply at shibboleth.net noreply at shibboleth.net
Wed Sep 26 18:13:38 EDT 2012


Author: putmanb
Date: Wed Sep 26 18:13:38 2012
New Revision: 436

URL: http://svn.shibboleth.net/view/java-openws?rev=436&view=rev
Log:
Fix log message typo.

Modified:
    branches/REL_1/src/main/java/org/opensaml/util/resource/FileBackedHttpResource.java

Modified: branches/REL_1/src/main/java/org/opensaml/util/resource/FileBackedHttpResource.java
URL: http://svn.shibboleth.net/view/java-openws/branches/REL_1/src/main/java/org/opensaml/util/resource/FileBackedHttpResource.java?rev=436&r1=435&r2=436&view=diff
==============================================================================
--- branches/REL_1/src/main/java/org/opensaml/util/resource/FileBackedHttpResource.java (original)
+++ branches/REL_1/src/main/java/org/opensaml/util/resource/FileBackedHttpResource.java Wed Sep 26 18:13:38 2012
@@ -126,7 +126,7 @@
         try {
             httpExists = super.exists();
         } catch (ResourceException e) {
-            log.warn("HTTP resource '{}' was inaccesible for exists(), trying backing file '{}'", 
+            log.warn("HTTP resource '{}' was inaccessible for exists(), trying backing file '{}'", 
                     getLocation(), resourceFile.getAbsolutePath());
             return resourceFile.exists();
         }
@@ -151,7 +151,7 @@
             ins = getMethod.getResponseBodyAsStream();
         } catch (Exception e) {
             try {
-                log.warn("HTTP resource '{}' was inaccesible for getInputStream(), trying backing file '{}'", 
+                log.warn("HTTP resource '{}' was inaccessible for getInputStream(), trying backing file '{}'", 
                         getLocation(), resourceFile.getAbsolutePath());
                 ins = new FileInputStream(resourceFile);
             } catch (IOException ioe) {
@@ -168,7 +168,7 @@
         try {
             return super.getLastModifiedTime();
         } catch (ResourceException e) {
-            log.warn("HTTP resource '{}' was inaccesible for getLastModifiedTime(), trying backing file '{}'", 
+            log.warn("HTTP resource '{}' was inaccessible for getLastModifiedTime(), trying backing file '{}'", 
                     getLocation(), resourceFile.getAbsolutePath());
             long lastModifiedTime = resourceFile.lastModified();
             if (lastModifiedTime == 0) {



More information about the commits mailing list