From dff219e8849f9844e86c5f9e284f6eb35b0fefca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristinn=20Sigur=C3=B0sson?= Date: Fri, 13 Mar 2015 14:32:23 +0000 Subject: [PATCH] Harmonizing whitespace use --- .../org/archive/modules/recrawl/FetchHistoryProcessor.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/src/main/java/org/archive/modules/recrawl/FetchHistoryProcessor.java b/modules/src/main/java/org/archive/modules/recrawl/FetchHistoryProcessor.java index e8e7fc12..45a373f4 100644 --- a/modules/src/main/java/org/archive/modules/recrawl/FetchHistoryProcessor.java +++ b/modules/src/main/java/org/archive/modules/recrawl/FetchHistoryProcessor.java @@ -107,9 +107,9 @@ public class FetchHistoryProcessor extends Processor { curi.getData().put(A_FETCH_HISTORY, history); if (curi.getFetchStatus() == 304) { - // Copy forward the content digest as the current digest is simply of an empty response - latestFetch.put(A_CONTENT_DIGEST, history[1].get(A_CONTENT_DIGEST)); - // Create revisit profile + // Copy forward the content digest as the current digest is simply of an empty response + latestFetch.put(A_CONTENT_DIGEST, history[1].get(A_CONTENT_DIGEST)); + // Create revisit profile ServerNotModifiedRevisit revisit = new ServerNotModifiedRevisit(); revisit.setETag((String) latestFetch.get(A_ETAG_HEADER)); revisit.setLastModified((String) latestFetch.get(A_LAST_MODIFIED_HEADER));