mirror of
https://github.com/querydsl/querydsl.git
synced 2026-07-03 21:07:49 +08:00
Update test
This commit is contained in:
parent
443536b4d9
commit
d43d48f182
@ -2,7 +2,8 @@ package com.mysema.query.domain;
|
||||
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.MappedSuperclass;
|
||||
import java.util.Set;
|
||||
import java.util.SortedSet;
|
||||
import java.util.TreeSet;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
@ -16,7 +17,7 @@ public class Generic16Test {
|
||||
@Entity
|
||||
public static abstract class HidaBezGruppe<G extends HidaBezGruppe<G, B>, B extends HidaBez<B, G>> extends CapiBCKeyedByGrundstueck {
|
||||
|
||||
Set<HidaBez> bez;
|
||||
SortedSet<B> bez = new TreeSet<B>();
|
||||
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user