[BAEL-3936] Fixed formatting

This commit is contained in:
Kostas Karavitis 2020-04-17 19:24:01 +03:00
parent 74e02b2216
commit 36d7572276
1 changed files with 2 additions and 3 deletions

View File

@ -28,8 +28,7 @@ public class Cocktail {
referencedColumnName = "cocktail",
insertable = false, updatable = false,
foreignKey = @javax.persistence
.ForeignKey(value = ConstraintMode.NO_CONSTRAINT)
)
.ForeignKey(value = ConstraintMode.NO_CONSTRAINT))
private Recipe recipe;
@OneToMany(fetch = FetchType.LAZY)
@ -40,7 +39,7 @@ public class Cocktail {
insertable = false,
updatable = false,
foreignKey = @javax.persistence
.ForeignKey(value = ConstraintMode.NO_CONSTRAINT))
.ForeignKey(value = ConstraintMode.NO_CONSTRAINT))
private List<MultipleRecipe> recipeList;
public Cocktail() {