Skip to content
Snippets Groups Projects
Commit 970f57ad authored by Robert Goldmann's avatar Robert Goldmann
Browse files

#598 - fixed linter warnings

parent d228440a
No related branches found
No related tags found
No related merge requests found
Showing
with 11 additions and 0 deletions
......@@ -15,6 +15,7 @@ public class BackupAccount_v4 implements Upgradeable<BackupAccount_v5>
public BackupAccount_v4()
{
// for GSON
}
public BackupAccount_v4(Integer ID, String name, AccountType type)
......
......@@ -15,6 +15,7 @@ public class BackupCategory_v4 implements Upgradeable<BackupCategory_v5>
public BackupCategory_v4()
{
// for GSON
}
public BackupCategory_v4(Integer ID, String name, String color, CategoryType type)
......
......@@ -24,6 +24,7 @@ public class BackupDatabase_v4 implements BackupDatabase
public BackupDatabase_v4()
{
// for GSON
}
public BackupDatabase_v4(List<BackupCategory_v4> categories, List<BackupAccount_v4> accounts, List<BackupTransaction_v4> transactions, List<BackupTemplate_v4> templates)
......
......@@ -9,6 +9,7 @@ public class BackupRepeatingModifier_v4
public BackupRepeatingModifier_v4()
{
// for GSON
}
public BackupRepeatingModifier_v4(Integer quantity, String localizationKey)
......
......@@ -10,6 +10,7 @@ public class BackupRepeatingOption_v4
public BackupRepeatingOption_v4()
{
// for GSON
}
public BackupRepeatingOption_v4(String startDate, BackupRepeatingModifier_v4 modifier, BackupRepeatingEndOption_v4 endOption)
......
......@@ -15,6 +15,7 @@ public class BackupAccount_v5
public BackupAccount_v5()
{
// for GSON
}
public BackupAccount_v5(Integer ID, String name, AccountState accountState, AccountType type, BackupImage_v5 icon)
......
......@@ -14,6 +14,7 @@ public class BackupCategory_v5
public BackupCategory_v5()
{
// for GSON
}
public BackupCategory_v5(Integer ID, String name, String color, CategoryType type, String icon)
......
......@@ -14,6 +14,7 @@ public class BackupChart_v5
public BackupChart_v5()
{
// for GSON
}
public BackupChart_v5(Integer ID, String name, String script, ChartType type, int version)
......
......@@ -32,6 +32,7 @@ public class BackupDatabase_v5 implements BackupDatabase
public BackupDatabase_v5()
{
// for GSON
}
public BackupDatabase_v5(List<BackupCategory_v5> categories, List<BackupAccount_v5> accounts, List<BackupTransaction_v5> transactions, List<BackupTemplate_v5> templates, List<BackupChart_v5> charts, List<BackupImage_v5> images)
......
......@@ -13,6 +13,7 @@ public class BackupImage_v5
public BackupImage_v5()
{
// for GSON
}
public BackupImage_v5(Integer ID, Byte[] image, String fileName, ImageFileExtension fileExtension)
......
......@@ -20,6 +20,7 @@ public class BackupTemplate_v5
public BackupTemplate_v5()
{
// for GSON
}
public BackupTemplate_v5(String templateName, Integer amount, Boolean isExpenditure, BackupAccount_v5 account, BackupCategory_v5 category, String name, String description, BackupImage_v5 icon, List<Tag> tags, BackupAccount_v5 transferAccount)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment