This commit is contained in:
Timo Westkämper 2013-05-09 23:29:32 +03:00
parent 79777a3bc6
commit 34f09f950c
2 changed files with 3 additions and 7 deletions

View File

@ -57,9 +57,9 @@ public class DateTimeTest extends AbstractQueryTest {
@Test
public void DateOperations2() {
catalog.effectiveDate.second();
catalog.effectiveDate.minute();
catalog.effectiveDate.hour();
// catalog.effectiveDate.second();
// catalog.effectiveDate.minute();
// catalog.effectiveDate.hour();
catalog.effectiveDate.dayOfMonth();
catalog.effectiveDate.month();
catalog.effectiveDate.year();

View File

@ -35,10 +35,6 @@ public class Catalog {
@Id
int id;
// @OneToMany
// @Sort(type = SortType.NATURAL)
// SortedSet<Price> prices;
@OneToMany
Set<Price> prices;
}