Commit 86b387c7 authored by Grzegorz Pietrusza's avatar Grzegorz Pietrusza

remove unnecessary function

parent b4975b29
...@@ -43,13 +43,6 @@ public class TasksRepository implements Repository ...@@ -43,13 +43,6 @@ public class TasksRepository implements Repository
initialize(); initialize();
} }
public Task getByName(String taskName)
{
return datastore.createQuery(Task.class)
.filter("name", taskName)
.get();
}
public Task getByLevel(int level) public Task getByLevel(int level)
{ {
return datastore.createQuery(Task.class) return datastore.createQuery(Task.class)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment