minor cleanup work

This commit is contained in:
eugenp 2015-05-30 18:22:29 +01:00
parent df2a789fa2
commit be4c05ad2d
8 changed files with 69 additions and 74 deletions

View File

@ -15,7 +15,6 @@
<version>1.2.3.RELEASE</version> <version>1.2.3.RELEASE</version>
</parent> </parent>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>

View File

@ -1,6 +1,5 @@
package org.baeldung.main; package org.baeldung.main;
import org.baeldung.service.LoginService; import org.baeldung.service.LoginService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication; import org.springframework.boot.SpringApplication;

View File

@ -16,13 +16,10 @@ public class LoginServiceImpl implements LoginService {
public boolean login(String userName, char[] password) { public boolean login(String userName, char[] password) {
boolean success; boolean success;
if (userName.equals("admin") && "secret".toCharArray().equals(password)) if (userName.equals("admin") && "secret".toCharArray().equals(password)) {
{
counterService.increment("counter.login.success"); counterService.increment("counter.login.success");
success = true; success = true;
} } else {
else
{
counterService.increment("counter.login.failure"); counterService.increment("counter.login.failure");
success = false; success = false;
} }