Skip to content

Commit 607a186

Browse files
author
Jorge Costa
committed
Merge branch 'release/0.4.3' into develop
2 parents 0a23414 + 822d339 commit 607a186

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.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.

activity-fragment-manager/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ publish {
7878
userOrg = "jmspt"
7979
groupId = "com.massivedisaster"
8080
artifactId = 'activity-fragment-manager'
81-
publishVersion = "0.4.2"
81+
publishVersion = "0.4.3"
8282
desc = 'Activity Fragment Manager'
8383
website = websiteBase
8484
licences = licensesBase

activity-fragment-manager/src/main/java/com/massivedisaster/activitymanager/ActivityTransaction.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public class ActivityTransaction implements ITransaction<ActivityTransaction> {
9494
/**
9595
* ActivityTransaction constructor, created to be used by a fragment.
9696
*
97-
* @param context The fragment to be used to start the new activity.
97+
* @param context The context to be used to start the new activity.
9898
* @param abstractBaseActivityClass The AbstractFragmentActivity class.
9999
* @param fragmentClass The Fragment to be injected in the activityClass.
100100
*/
@@ -103,7 +103,7 @@ public class ActivityTransaction implements ITransaction<ActivityTransaction> {
103103
mContext = context;
104104
mAbstractBaseActivity = abstractBaseActivityClass;
105105

106-
mIntent = new Intent(mFragment.getContext(), mAbstractBaseActivity);
106+
mIntent = new Intent(mContext, mAbstractBaseActivity);
107107
mIntent.putExtra(ACTIVITY_MANAGER_FRAGMENT, fragmentClass.getCanonicalName());
108108
}
109109

deploy/configuration.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"basePath": "../",
33
"readmePath": "../README.md",
4-
"version": "0.4.2",
4+
"version": "0.4.3",
55
"modules": [
66
"activity-fragment-manager"
77
]

0 commit comments

Comments
 (0)