Merge branch '1.5.x'

This commit is contained in:
Andy Wilkinson
2016-11-22 11:08:10 +00:00
3 changed files with 1 additions and 6 deletions

View File

@@ -20,7 +20,6 @@ import java.util.List;
import org.springframework.data.neo4j.repository.GraphRepository;
@SuppressWarnings("deprecation")
public interface CustomerRepository extends GraphRepository<Customer> {
public Customer findByFirstName(String firstName);

View File

@@ -27,7 +27,6 @@ public class SampleNeo4jApplication implements CommandLineRunner {
@Autowired
private CustomerRepository repository;
@SuppressWarnings("deprecation")
@Override
public void run(String... args) throws Exception {
this.repository.deleteAll();