Skip to content

Commit

Permalink
Fix JENKINS-10728
Browse files Browse the repository at this point in the history
  • Loading branch information
gboissinot committed Aug 25, 2011
1 parent 1561067 commit a2ce67a
Showing 1 changed file with 1 addition and 6 deletions.
Expand Up @@ -259,12 +259,7 @@ private URLTriggerEntry fillAndGetEntry(StaplerRequest req, JSONObject entryObje
}

//Process checkLastModifiedDate
Object checkLastModifiedDateObject = entryObject.get("checkLastModificationDate");
if (checkLastModifiedDateObject != null) {
urlTriggerEntry.setCheckLastModificationDate(true);
} else {
urlTriggerEntry.setCheckLastModificationDate(false);
}
urlTriggerEntry.setCheckLastModificationDate(entryObject.getBoolean("checkLastModificationDate"));

//Process inspectingContent
Object inspectingContentObject = entryObject.get("inspectingContent");
Expand Down

0 comments on commit a2ce67a

Please sign in to comment.