Skip to content

Commit 76180ef

Browse files
committed
Update docs
1 parent c9c04f8 commit 76180ef

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

src/main/java/com/blockscore/exceptions/APIException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/**
88
* Exception thrown when an API error occurs.
9-
* Created by tealocean on 9/29/14.
9+
* Created by Tony Dieppa on 9/29/14.
1010
*/
1111
public class APIException extends RuntimeException {
1212
private final BlockscoreError mError;

src/main/java/com/blockscore/exceptions/InvalidRequestException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
/**
99
* Exception thrown when an invalid request is returned from the server.
10-
* Created by tealocean on 9/29/14.
10+
* Created by Tony Dieppa on 9/29/14.
1111
*/
1212
public class InvalidRequestException extends RuntimeException {
1313
private final BlockscoreError mError;

src/main/java/com/blockscore/exceptions/NoApiKeyFoundException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* Exception thrown when no API key is set and an API call is attempted.
5-
* Created by tealocean on 9/29/14.
5+
* Created by Tony Dieppa on 9/29/14.
66
*/
77
public class NoApiKeyFoundException extends RuntimeException {
88
public NoApiKeyFoundException() {

src/main/java/com/blockscore/models/AnsweredQuestion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/**
66
* Answered question model.
7-
* Created by tealocean on 9/30/14.
7+
* Created by Tony Dieppa on 9/30/14.
88
*/
99
public class AnsweredQuestion {
1010
@JsonProperty("question_id")

src/main/java/com/blockscore/models/Identification.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
/**
77
* Identification model. (Stores either SSN or passport information)
8-
* Created by tealocean on 9/29/14.
8+
* Created by Tony Dieppa on 9/29/14.
99
*/
1010
public class Identification {
1111

src/main/java/com/blockscore/models/Name.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/**
88
* Name model. Used to identify the name of an individual.
9-
* Created by tealocean on 9/29/14.
9+
* Created by Tony Dieppa on 9/29/14.
1010
*/
1111
public class Name {
1212
@NotNull

src/main/java/com/blockscore/models/WatchlistCandidate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
/**
1111
* Watch list candidate model.
12-
* Created by tealocean on 9/30/14.
12+
* Created by Tony Dieppa on 9/30/14.
1313
*/
1414
public class WatchlistCandidate extends BasicResponse {
1515
@Nullable

src/main/java/com/blockscore/models/request/AnswerRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
/**
1010
* Request object to hold answers. Used when scoring answers.
11-
* Created by tealocean on 9/30/14.
11+
* Created by Tony Dieppa on 9/30/14.
1212
*/
1313
public class AnswerRequest {
1414
@NotNull

src/main/java/com/blockscore/models/results/Verification.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
/**
1313
* Verification model.
14-
* Created by tealocean on 9/29/14.
14+
* Created by Tony Dieppa on 9/29/14.
1515
*/
1616
public class Verification extends Person {
1717
@NotNull

src/main/java/com/blockscore/net/BlockscoreApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
/**
4343
* The Blockscore Java API client.
44-
* Created by tealocean on 9/29/14.
44+
* Created by Tony Dieppa on 9/29/14.
4545
*/
4646
public class BlockscoreApiClient {
4747
private static RestAdapter.LogLevel sLogLevel = RestAdapter.LogLevel.NONE;

0 commit comments

Comments
 (0)