Skip to content

Commit

Permalink
Optimize imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
eivinhb committed May 13, 2019
1 parent d7cadb2 commit 8b5cdb0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import java.time.ZonedDateTime;
import java.util.Collections;
import java.util.List;
import java.util.Set;

@XmlRootElement
@Value
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
package no.digipost.api.datatypes.types;

import lombok.*;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.NoArgsConstructor;
import lombok.Value;
import lombok.experimental.Wither;
import no.digipost.api.datatypes.DataType;
import no.digipost.api.datatypes.documentation.Description;
Expand Down
9 changes: 4 additions & 5 deletions src/main/java/no/digipost/api/datatypes/types/Link.java
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
package no.digipost.api.datatypes.types;

import lombok.*;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.NoArgsConstructor;
import lombok.Value;
import lombok.experimental.Wither;
import no.digipost.api.datatypes.DataType;
import no.digipost.api.datatypes.documentation.Description;
import no.digipost.api.datatypes.validation.WebUrl;

import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import java.net.URI;
import java.time.ZoneId;
import java.time.ZonedDateTime;

@XmlType
@Value
Expand Down

0 comments on commit 8b5cdb0

Please sign in to comment.