Skip to content

Commit

Permalink
Changed default logging level
Browse files Browse the repository at this point in the history
  • Loading branch information
hohonuuli committed Jun 2, 2022
1 parent e1a08ed commit 5420dd8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {

subprojects {

version = "1.2.1"
version = "1.2.2"

apply plugin: 'com.adarshr.test-logger'
apply plugin: 'com.github.ben-manes.versions'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*/
public class CopyAnnotationsCmd implements Command {

private final Collection<java.lang.annotation.Annotation> copiedAnnotations;
private final Collection<Annotation> copiedAnnotations;

public CopyAnnotationsCmd(UUID videoReferenceUuid,
VideoIndex videoIndex,
Expand Down Expand Up @@ -130,6 +130,6 @@ private List<Annotation> filterPrexisting(UIToolBox toolBox, Collection<Annotati

@Override
public String getDescription() {
return "Copy " copiedAnnotations.size() + " annotations";
return "Copy " + copiedAnnotations.size() + " annotations";
}
}

0 comments on commit 5420dd8

Please sign in to comment.