Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
SWEN90006-A1-2019
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Lin Fan
SWEN90006-A1-2019
Commits
d44e52ff
Commit
d44e52ff
authored
Sep 06, 2019
by
Lin Fan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update PassBook.java
parent
5cac2ade
Pipeline
#6252
failed with stages
in 24 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
PassBook.java
programs/mutant-4/swen90006/passbook/PassBook.java
+2
-2
No files found.
programs/mutant-4/swen90006/passbook/PassBook.java
View file @
d44e52ff
...
...
@@ -39,7 +39,7 @@ public class PassBook
public
final
static
int
MINIMUM_PASSPHRASE_LENGTH
=
8
;
/** Valid URL protocols for the passbook */
public
final
static
String
[]
VALID_URL_PROTOCOLS
=
{
"http"
,
"https"
};
public
final
static
String
[]
VALID_URL_PROTOCOLS
=
{
"http"
,
"https"
,
"ftp"
};
//The passphrases (master passwords) for all users
private
Map
<
String
,
String
>
passphrases
;
...
...
@@ -250,7 +250,7 @@ public class PassBook
Pair
<
String
,
String
>
pair
=
pt
.
get
(
url
);
//if this returned nothing, the user does not have a login for this url
if
(
p
t
==
null
)
{
if
(
p
air
==
null
)
{
throw
new
NoSuchURLException
(
passbookUsername
,
url
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment