Skip to content

Commit

Permalink
Make constructor private
Browse files Browse the repository at this point in the history
Signed-off-by: Sébastien Murgey <sebastien.murgey@rte-france.com>
  • Loading branch information
murgeyseb committed Sep 11, 2023
1 parent b71baa2 commit 293f7fe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
/**
* @author Sebastien Murgey {@literal <sebastien.murgey at rte-france.com>}
*/
public class GlskDocumentBasedGlskProvider implements GlskProvider {
public final class GlskDocumentBasedGlskProvider implements GlskProvider {
private final GlskDocument glskDocument;
private final Instant instant;
private final boolean usingNetworkInstant;

public GlskDocumentBasedGlskProvider(GlskDocument glskDocument, Instant instant, boolean usingNetworkInstant) {
private GlskDocumentBasedGlskProvider(GlskDocument glskDocument, Instant instant, boolean usingNetworkInstant) {
this.glskDocument = glskDocument;
this.instant = instant;
this.usingNetworkInstant = usingNetworkInstant;
Expand Down

0 comments on commit 293f7fe

Please sign in to comment.