We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d67c438 commit 97b8d45Copy full SHA for 97b8d45
src/main/java/org/springframework/data/repository/query/Parameters.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright 2008-2014 the original author or authors.
+ * Copyright 2008-2015 the original author or authors.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
@@ -37,6 +37,7 @@
37
*/
38
public abstract class Parameters<S extends Parameters<S, T>, T extends Parameter> implements Iterable<T> {
39
40
+ @SuppressWarnings("unchecked")//
41
public static final List<Class<?>> TYPES = Arrays.asList(Pageable.class, Sort.class);
42
43
private static final String PARAM_ON_SPECIAL = format("You must not user @%s on a parameter typed %s or %s",
0 commit comments