Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroxpepe committed Jun 1, 2020
2 parents a6625bc + fb697b1 commit 846f25a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web: java $JAVA_OPTS -jar target/dependency/jetty-runner.jar --port $PORT exmp-blog-webapp/target/*.war
web: java $JAVA_OPTS -jar target/dependency/jetty-runner.jar --port $PORT webapp/target/*.war
2 changes: 0 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,8 @@
<artifactItems>
<artifactItem>
<groupId>org.eclipse.jetty</groupId>
<!--<groupId>org.mortbay.jetty</groupId>-->
<artifactId>jetty-runner</artifactId>
<version>9.4.19.v20190610</version>
<!--<version>7.4.5.v20110725</version>-->
<destFileName>jetty-runner.jar</destFileName>
</artifactItem>
</artifactItems>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public Set<EntryTag> getEntryTagSet(
// confirm the existence of the entry's tag.
List<EntryTag> entryTagList = entryTagRepository.findByEntryAndTag(entry, tag);
// this tag is new one for the entry.
if (entryTagList == null) {
if (entryTagList.isEmpty()) {
entryTag = context.getBean(EntryTag.class);
entryTag.setEntry(entry);
entryTag.setTag(tag);
Expand Down

0 comments on commit 846f25a

Please sign in to comment.