Skip to content

Commit 9e33cbf

Browse files
authored
Merge pull request #5 from spacious-team/develop
Релиз 2022.2
2 parents 2325467 + 1eaa8c3 commit 9e33cbf

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

.idea/copyright/GNU_AGPLv3.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
~ Table Wrapper Xml SpreadsheetML Impl
4-
~ Copyright (C) 2020 Vitalii Ananev <an-vitek@ya.ru>
4+
~ Copyright (C) 2020 Vitalii Ananev <spacious-team@ya.ru>
55
~
66
~ This program is free software: you can redistribute it and/or modify
77
~ it under the terms of the GNU Affero General Public License as
@@ -24,13 +24,13 @@
2424

2525
<groupId>org.spacious-team</groupId>
2626
<artifactId>table-wrapper-xml-impl</artifactId>
27-
<version>2021.4</version>
27+
<version>2022.2</version>
2828
<packaging>jar</packaging>
2929

3030
<name>Table Wrapper API Xml SpreadsheetML Implementation</name>
3131
<description>
3232
Implements unified Table Wrapper API for SpreadsheetML format and helps to
33-
easily search and access to rows, columns, and cell values.
33+
easily search and access to row, column, and cell value.
3434
</description>
3535
<url>https://github.com/spacious-team/table-wrapper-xml-impl</url>
3636

@@ -71,7 +71,7 @@
7171
<dependency>
7272
<groupId>com.github.spacious-team</groupId>
7373
<artifactId>table-wrapper-api</artifactId>
74-
<version>2021.4</version>
74+
<version>2022.2</version>
7575
</dependency>
7676
<dependency>
7777
<groupId>com.github.VEINHORN</groupId>
@@ -81,7 +81,7 @@
8181
<dependency>
8282
<groupId>org.projectlombok</groupId>
8383
<artifactId>lombok</artifactId>
84-
<version>1.18.18</version>
84+
<version>1.18.22</version>
8585
<scope>provided</scope>
8686
<optional>true</optional>
8787
</dependency>

src/main/java/org/spacious_team/table_wrapper/xml/XmlCellDataAccessObject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Table Wrapper Xml SpreadsheetML Impl
3-
* Copyright (C) 2021 Vitalii Ananev <an-vitek@ya.ru>
3+
* Copyright (C) 2021 Vitalii Ananev <spacious-team@ya.ru>
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU Affero General Public License as

src/main/java/org/spacious_team/table_wrapper/xml/XmlReportPage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Table Wrapper Xml SpreadsheetML Impl
3-
* Copyright (C) 2020 Vitalii Ananev <an-vitek@ya.ru>
3+
* Copyright (C) 2020 Vitalii Ananev <spacious-team@ya.ru>
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU Affero General Public License as

src/main/java/org/spacious_team/table_wrapper/xml/XmlTable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Table Wrapper Xml SpreadsheetML Impl
3-
* Copyright (C) 2020 Vitalii Ananev <an-vitek@ya.ru>
3+
* Copyright (C) 2020 Vitalii Ananev <spacious-team@ya.ru>
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU Affero General Public License as

src/main/java/org/spacious_team/table_wrapper/xml/XmlTableCell.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Table Wrapper Xml SpreadsheetML Impl
3-
* Copyright (C) 2020 Vitalii Ananev <an-vitek@ya.ru>
3+
* Copyright (C) 2020 Vitalii Ananev <spacious-team@ya.ru>
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU Affero General Public License as

src/main/java/org/spacious_team/table_wrapper/xml/XmlTableFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Table Wrapper Xml SpreadsheetML Impl
3-
* Copyright (C) 2020 Vitalii Ananev <an-vitek@ya.ru>
3+
* Copyright (C) 2020 Vitalii Ananev <spacious-team@ya.ru>
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU Affero General Public License as

src/main/java/org/spacious_team/table_wrapper/xml/XmlTableHelper.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Table Wrapper Xml SpreadsheetML Impl
3-
* Copyright (C) 2020 Vitalii Ananev <an-vitek@ya.ru>
3+
* Copyright (C) 2020 Vitalii Ananev <spacious-team@ya.ru>
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU Affero General Public License as
@@ -43,8 +43,8 @@ static TableCellAddress find(Worksheet sheet, Object value, int startRow, int en
4343
}
4444
for(int rowNum = startRow; rowNum < endRow; rowNum++) {
4545
Row row = sheet.getRowAt(rowNum + 1);
46-
TableCellAddress address;
47-
if ((address = find(row, value, startColumn, endColumn, stringPredicate)) != null) {
46+
TableCellAddress address = find(row, value, startColumn, endColumn, stringPredicate);
47+
if (address != NOT_FOUND) {
4848
return address;
4949
}
5050
}
@@ -65,7 +65,7 @@ static TableCellAddress find(Row row, Object value, int startColumn, int endColu
6565
}
6666
}
6767
}
68-
return null;
68+
return NOT_FOUND;
6969
}
7070

7171
static int getLastRowNum(Worksheet sheet) {

src/main/java/org/spacious_team/table_wrapper/xml/XmlTableRow.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Table Wrapper Xml SpreadsheetML Impl
3-
* Copyright (C) 2020 Vitalii Ananev <an-vitek@ya.ru>
3+
* Copyright (C) 2020 Vitalii Ananev <spacious-team@ya.ru>
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU Affero General Public License as

0 commit comments

Comments
 (0)