Skip to content

Commit

Permalink
Change FileType to new specifications.
Browse files Browse the repository at this point in the history
  • Loading branch information
bitzl committed Apr 28, 2016
1 parent c6c327e commit be36254
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
14 changes: 2 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.multimedia.emulation.emil.integration</groupId>
<artifactId>emil-rosetta</artifactId>
<version>1.2.0-RELEASE</version>
<version>1.3.0-RELEASE</version>
<name>EMiL - Rosetta integration microservice</name>
<packaging>jar</packaging>

Expand All @@ -30,18 +30,8 @@
<dependency>
<groupId>de.multimedia.emulation.emil.integration</groupId>
<artifactId>framework</artifactId>
<version>1.1-RELEASE</version>
<version>1.2-RELEASE</version>
</dependency>
<!--
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
-->
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ public void setUrl(URL url) {

public void adjustFiletype() {
if (hasExtension("iso")) {
this.type = FileType.ISO;
this.type = FileType.CDROM;
} else if (hasExtension("img")) {
this.type = FileType.IMG;
this.type = FileType.DISK;
}
}

Expand Down

0 comments on commit be36254

Please sign in to comment.