[#160] Removed unnecessary Slf4j loggers

fixes #160
This commit is contained in:
Marcin Grzejszczak
2016-02-18 11:23:09 +01:00
parent cf6f629663
commit c0620c410c
16 changed files with 69 additions and 68 deletions

View File

@@ -1,7 +1,7 @@
package sample;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.messaging.handler.annotation.MessageMapping;
import org.springframework.messaging.handler.annotation.SendTo;
import org.springframework.stereotype.Controller;
@@ -9,7 +9,7 @@ import org.springframework.stereotype.Controller;
@Controller
public class GreetingController {
private static Logger log = LoggerFactory.getLogger(GreetingController.class);
private static final Log log = LogFactory.getLog(GreetingController.class);
@MessageMapping("/hello")
@SendTo("/topic/greetings")