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

Commit

Permalink
v1.1.3
Browse files Browse the repository at this point in the history
-Equals and hashcode of CodiceGestionale fix
  • Loading branch information
Mauro Molin committed Jan 25, 2018
1 parent 7bad49d commit 8cccd64
Show file tree
Hide file tree
Showing 5 changed files with 8 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.2</version>
<version>1.1.3</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.2</version>
<version>1.1.3</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
@@ -1,12 +1,14 @@
package com.github.mmauro94.siopeDownloader.datastruct.anagrafiche;

import lombok.EqualsAndHashCode;
import org.apache.commons.csv.CSVRecord;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

import java.util.Date;
import java.util.List;

@EqualsAndHashCode(callSuper = true)
public class CodiceGestionaleEntrate extends CodiceGestionale {

public static class Map extends CodiceGestionale.Map<CodiceGestionaleEntrate> {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
package com.github.mmauro94.siopeDownloader.datastruct.anagrafiche;

import lombok.EqualsAndHashCode;
import org.apache.commons.csv.CSVRecord;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

import java.io.IOException;
import java.util.Date;
import java.util.List;

@EqualsAndHashCode(callSuper = true)
public class CodiceGestionaleUscite extends CodiceGestionale {

public static class Map extends CodiceGestionale.Map<CodiceGestionaleUscite> {
Expand All @@ -33,5 +36,4 @@ public Map createMap() {
public static CodiceGestionaleUscite.Map parseAll(@NotNull List<CSVRecord> records, @NotNull Comparto.Map comparti) {
return parseAll(records, CREATOR, comparti);
}

}
2 changes: 1 addition & 1 deletion src/main/test/Test.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ static class ControlloreDelProgressamento implements OnProgressListener {

@Override
public void onProgress(float progress) {
System.out.println(PERCENT_FORMAT.format(progress));
//System.out.println(PERCENT_FORMAT.format(progress));
final long now = System.currentTimeMillis();
if (startTime == null) {
startTime = now;
Expand Down

0 comments on commit 8cccd64

Please sign in to comment.