Skip to content

Commit b77bf43

Browse files
committed
- updating comment
1 parent 1cab224 commit b77bf43

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.idea/misc.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.

frag-nav/pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
54
<modelVersion>4.0.0</modelVersion>
65
<groupId>com.ncapdevi</groupId>
76
<artifactId>frag-nav</artifactId>
8-
<version>2.2.1</version>
7+
<version>2.4.0</version>
98
<packaging>aar</packaging>
109
<name>frag-nav</name>
1110
<description>A library to help manage multiple fragment stacks</description>

frag-nav/src/main/java/com/ncapdevi/fragnav/FragNavController.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -820,7 +820,9 @@ public boolean isStateSaved() {
820820
}
821821

822822
/**
823-
* This check is here to prevent recursive entries into executePendingTransactions
823+
* Use this if you need to make sure that pending transactions occur immediately. This call is safe to
824+
* call as often as you want as there's a check to prevent multiple executePendingTransactions at once
825+
*
824826
*/
825827
public void executePendingTransactions() {
826828
if (!mExecutingTransaction) {

0 commit comments

Comments
 (0)