Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
bitmask_android
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Shinigama
bitmask_android
Commits
9320a608
Commit
9320a608
authored
7 years ago
by
cyberta
Browse files
Options
Downloads
Patches
Plain Diff
#8789 fixed javadoc and catched another IllegalStateException
parent
b62e17ad
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/src/main/java/se/leap/bitmaskclient/BaseConfigurationWizard.java
+1
-3
1 addition, 3 deletions
...n/java/se/leap/bitmaskclient/BaseConfigurationWizard.java
app/src/main/java/se/leap/bitmaskclient/Dashboard.java
+6
-2
6 additions, 2 deletions
app/src/main/java/se/leap/bitmaskclient/Dashboard.java
with
7 additions
and
5 deletions
app/src/main/java/se/leap/bitmaskclient/BaseConfigurationWizard.java
+
1
−
3
View file @
9320a608
...
...
@@ -368,9 +368,7 @@ public abstract class BaseConfigurationWizard extends Activity
}
/**
* Once selected a provider, this fragment offers the user to log in,
* use it anonymously (if possible)
* or cancel his/her election pressing the back button.
* Shows an error dialog, if configuring of a provider failed.
*
* @param reason_to_fail
*/
...
...
This diff is collapsed.
Click to expand it.
app/src/main/java/se/leap/bitmaskclient/Dashboard.java
+
6
−
2
View file @
9320a608
...
...
@@ -349,8 +349,12 @@ public class Dashboard extends Activity implements ProviderAPIResultReceiver.Rec
}
public
void
sessionDialog
(
Bundle
resultData
)
{
try
{
FragmentTransaction
transaction
=
fragment_manager
.
removePreviousFragment
(
SessionDialog
.
TAG
);
SessionDialog
.
getInstance
(
provider
,
resultData
).
show
(
transaction
,
SessionDialog
.
TAG
);
}
catch
(
IllegalStateException
e
)
{
e
.
printStackTrace
();
}
}
private
void
switchProvider
()
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment