Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Model.Finder<I, T> Deperecated Play! 2.4

I am building an application using the latest version of Play!. When defining a Finder( as in Model.Finder) my IDE gives me a warning Finder is deprecated. I can't find any information in the documentation about Model.Finder being deprecated of any alternative to using it. Has anyone experienced a similar issue and know of an alternative?

like image 665
Travis Smith Avatar asked Jun 10 '15 16:06

Travis Smith


2 Answers

Use Model.Finder<T> like:

public static Finder<Long, Foo> find = new Finder<>(Foo.class);

instead of

public static Finder<Long, Foo> find = new Finder<>(Long.class, Foo.class);
like image 98
biesior Avatar answered Oct 19 '22 07:10

biesior


According to github Model.Finder is not deprecated, but one of its constructors:

/**
 * @deprecated
 */
public Finder(Class<I> idType, Class<T> type) {
  super(null, type);
}

Make sure you use correct constructor, pointed out by @biesior:

public static Finder<Long, Foo> find = new Finder<>(Foo.class);
like image 26
Mon Calamari Avatar answered Oct 19 '22 05:10

Mon Calamari