Skip to content

Commit

Permalink
Cleanup unused changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Willem Elbers committed Dec 12, 2024
1 parent 9d7ae54 commit 8802efd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
5 changes: 0 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -274,11 +274,6 @@
<artifactId>spring-test</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>${spring.version}</version>
</dependency>

<dependency>
<groupId>com.mysql</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.transaction.annotation.Transactional;

@Entity
@Table(name = "virtualcollection")
Expand Down Expand Up @@ -481,7 +480,6 @@ public void setCreationDate(Date creationDate) {
this.creationDate = creationDate;
}

//@Transactional
public List<Creator> getCreators() {
if (creators == null) {
this.creators = new ArrayList<Creator>();
Expand Down Expand Up @@ -521,15 +519,13 @@ public void setReproducibilityNotice(String reproducibilityNotice) {
this.reproducibilityNotice = reproducibilityNotice;
}

//@Transactional
public List<String> getKeywords() {
if (keywords == null) {
keywords = new ArrayList<String>();
}
return keywords;
}

//@Transactional
public List<Resource> getResources() {
if (resources == null) {
resources = new ArrayList<Resource>();
Expand Down

0 comments on commit 8802efd

Please sign in to comment.