Skip to content

Commit 56276dc

Browse files
committed
HHH-5800 Formatting
1 parent a2a2e64 commit 56276dc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

testsuite/src/test/java/org/hibernate/test/annotations/xml/ejb3/Manufacturer.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
import java.util.Set;
66
import javax.persistence.Entity;
77
import javax.persistence.Id;
8-
import javax.persistence.OneToMany;
98
import javax.persistence.NamedQuery;
9+
import javax.persistence.OneToMany;
1010
import javax.persistence.TableGenerator;
1111

1212
/**
1313
* @author Emmanuel Bernard
1414
*/
1515
@Entity
16-
@NamedQuery(name="manufacturer.findAll", query = "from Manufacturer where 1 = 2")
17-
@TableGenerator(name="generator", table = "this is a broken name with select from and other SQL keywords")
16+
@NamedQuery(name = "manufacturer.findAll", query = "from Manufacturer where 1 = 2")
17+
@TableGenerator(name = "generator", table = "this is a broken name with select from and other SQL keywords")
1818
public class Manufacturer {
1919
private Integer id;
2020
private Set<Model> models = new HashSet<Model>();

0 commit comments

Comments
 (0)