Skip to content
This repository has been archived by the owner on Jun 10, 2023. It is now read-only.

Commit

Permalink
v1.1.2
Browse files Browse the repository at this point in the history
Operazione and Uscita constructors public
  • Loading branch information
Mauro Molin committed Jan 25, 2018
1 parent 2a74784 commit 7bad49d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Nel sito sono presenti entrate e uscite relative ad un certo ente in un certo me
<dependency>
<groupId>com.github.mmauro94</groupId>
<artifactId>siopeDownloader</artifactId>
<version>1.1.1</version>
<version>1.1.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.mmauro94</groupId>
<artifactId>siopeDownloader</artifactId>
<version>1.1.1</version>
<version>1.1.2</version>

<name>siope.it downloader</name>
<description>Una libreria per scaricare i dati di siope.it</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

public final class Entrata extends Operazione<CodiceGestionaleEntrate> {

private Entrata(@NotNull Ente ente, int year, int month, @NotNull CodiceGestionaleEntrate codiceGestionale, long amount) {
public Entrata(@NotNull Ente ente, int year, int month, @NotNull CodiceGestionaleEntrate codiceGestionale, long amount) {
super(ente, year, month, codiceGestionale, amount);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

public final class Uscita extends Operazione<CodiceGestionaleUscite> {

private Uscita(@NotNull Ente ente, int year, int month, @NotNull CodiceGestionaleUscite codiceGestionale, long amount) {
public Uscita(@NotNull Ente ente, int year, int month, @NotNull CodiceGestionaleUscite codiceGestionale, long amount) {
super(ente, year, month, codiceGestionale, amount);
}

Expand Down

0 comments on commit 7bad49d

Please sign in to comment.