Skip to content

Commit 9d17e7d

Browse files
committed
Fix code inspector issues in QifExporter
1 parent bd8725f commit 9d17e7d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

app/src/main/java/org/gnucash/android/export/qif/QifExporter.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
* @author Yongxin Wang <fefe.wyx@gmail.com>
5656
*/
5757
public class QifExporter extends Exporter{
58-
private static final String TAG = "QifExporter";
5958

6059
/**
6160
* Initialize the exporter
@@ -261,7 +260,7 @@ private List<String> zipQifs(List<String> exportedFiles) throws IOException {
261260
* @return a list of paths of the newly created Qif files.
262261
* @throws IOException if something went wrong while splitting the file.
263262
*/
264-
public List<String> splitQIF(File file) throws IOException {
263+
private List<String> splitQIF(File file) throws IOException {
265264
// split only at the last dot
266265
String[] pathParts = file.getPath().split("(?=\\.[^\\.]+$)");
267266
ArrayList<String> splitFiles = new ArrayList<>();

0 commit comments

Comments
 (0)