File tree 2 files changed +3
-4
lines changed
src/main/java/com/mewebstudio/springboot/jpa/nestedset 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 42
42
43
43
- name : Build with Maven
44
44
run : |
45
- mvn clean deploy -Dgpg.passphrase=$GPG_PASSPHRASE \
46
- -Dgpg.keyname=$GPG_KEY_ID \
45
+ mvn clean deploy -Dgpg.keyname=$GPG_KEY_ID \
47
46
-Dgpg.executable=gpg \
48
47
-Dgpg.pinentry.mode=loopback
49
48
env :
50
- GPG_PASSPHRASE : ${{ secrets.GPG_PASSPHRASE }}
49
+ GPG_PASSPHRASE : ${{ secrets.MAVEN_GPG_PASSPHRASE }}
51
50
GPG_KEY_ID : ${{ secrets.GPG_KEY_ID }}
Original file line number Diff line number Diff line change 17
17
* @param <ID> The type of the identifier for the nested set node.
18
18
*/
19
19
public abstract class AbstractNestedSetService <T extends INestedSetNode <ID >, ID > {
20
- private static final int TEMP_OFFSET = Integer .MIN_VALUE ;
20
+ private static final int TEMP_OFFSET = Integer .MAX_VALUE ;
21
21
22
22
/**
23
23
* The repository to be used for database operations.
You can’t perform that action at this time.
0 commit comments