Optimazing builder's implementation (#1113)

Signed-off-by: <alextrentton@gmail.com>
6.19.x
Alexander V 2016-04-26 10:05:51 +03:00 committed by Sergii Kabashniuk
parent 97a17fd649
commit 1dbb9d7c3e
1 changed files with 5 additions and 5 deletions

View File

@ -29,7 +29,7 @@ import java.util.Objects;
* <br>my_private_registry:15800/my_image1:latest
* <br>my_private_registry:15800/my_image1@sha256:6b019df8c73bb42e606225ef935760b9c428521eba4ad2519ef3ff4cdb3dbd69
*
* @author Alexander Garaagtyi
* @author Alexander Garagatyi
*/
public class DockerImageIdentifier {
private final String registry;
@ -37,10 +37,10 @@ public class DockerImageIdentifier {
private final String tag;
private final String digest;
public DockerImageIdentifier(String registry,
String repository,
String tag,
String digest) {
private DockerImageIdentifier(String registry,
String repository,
String tag,
String digest) {
this.registry = registry;
this.repository = repository;
this.tag = tag;