From f006e6bfb4706447e5be6870ddffa74defa0d593 Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Thu, 20 Nov 2014 14:00:11 +0800 Subject: [PATCH] . --- util/panic.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/util/panic.go b/util/panic.go index 3f8ee9b..4dbf1e9 100644 --- a/util/panic.go +++ b/util/panic.go @@ -1,11 +1,11 @@ // Copyright (c) 2014, B3log -// +// // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at -// +// // http://www.apache.org/licenses/LICENSE-2.0 -// +// // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -22,7 +22,7 @@ import ( // Recover recovers a panic. func Recover() { - if re := recover(); re != nil { + if re := recover(); nil != re { glog.Errorf("PANIC RECOVERED:\n %v, %s", re, debug.Stack()) } }