refacto + recovery code from uncommited on my old pc

This commit is contained in:
marc barbier
2021-07-07 21:45:33 +02:00
parent 2a6b802bb0
commit 7c88e6cf2f
12 changed files with 496 additions and 410 deletions
+11 -8
View File
@@ -1,24 +1,27 @@
package downloader;
public class ProjectInfo {
private String slug, name, desc;
private String slug;
private String name;
private String desc;
public ProjectInfo(String slug, String name, String desc) {
super();
this.slug = slug;
this.name = name;
this.desc = desc;
}
public String getDesc() {
return desc;
return this.desc;
}
public String getName() {
return name;
return this.name;
}
public String getSlug() {
return slug;
return this.slug;
}
}