Skip to content

Commit 9d0d045

Browse files
committed
remove useless author javadoc. we have more accurate git blame)
1 parent d734a4d commit 9d0d045

41 files changed

Lines changed: 1 addition & 103 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

scribejava-apis/src/main/java/com/github/scribejava/apis/FlickrApi.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
/**
77
* OAuth API for Flickr.
88
*
9-
* @author Darren Greaves
109
* @see <a href="http://www.flickr.com/services/api/">Flickr API</a>
1110
*/
1211
public class FlickrApi extends DefaultApi10a {

scribejava-apis/src/main/java/com/github/scribejava/apis/MendeleyApi.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import com.github.scribejava.core.model.Verb;
66

77
/**
8-
* @author Arieh "Vainolo" Bibliowicz
98
* @see <a href="http://apidocs.mendeley.com/home/authentication">http://apidocs.mendeley.com/home/authentication</a>
109
*/
1110
public class MendeleyApi extends DefaultApi10a {

scribejava-apis/src/main/java/com/github/scribejava/apis/SimpleGeoApi.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
import com.github.scribejava.core.builder.api.DefaultApi10a;
44
import com.github.scribejava.core.model.OAuth1RequestToken;
55

6-
/**
7-
* @author Pablo Fernandez
8-
*/
96
public class SimpleGeoApi extends DefaultApi10a {
107

118
private static final String ENDPOINT = "these are not used since SimpleGeo uses 2 legged OAuth";

scribejava-apis/src/main/java/com/github/scribejava/apis/SkyrockApi.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
/**
77
* OAuth API for Skyrock.
88
*
9-
* @author Nicolas Quiénot
109
* @see <a href="http://www.skyrock.com/developer/">Skyrock.com API</a>
1110
*/
1211
public class SkyrockApi extends DefaultApi10a {

scribejava-apis/src/main/java/com/github/scribejava/apis/StackExchangeApi.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,9 @@
77
import com.github.scribejava.core.utils.OAuthEncoder;
88
import com.github.scribejava.core.utils.Preconditions;
99

10-
/***
10+
/**
1111
* Stack Exchange authentication via OAuth 2.0 (stackoverflow.com,
1212
* askubuntu.com, etc.).
13-
*
14-
* @author Michal Foksa
15-
*
1613
*/
1714
public class StackExchangeApi extends DefaultApi20 {
1815

scribejava-apis/src/main/java/com/github/scribejava/apis/UbuntuOneApi.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@
55
import com.github.scribejava.core.services.PlaintextSignatureService;
66
import com.github.scribejava.core.services.SignatureService;
77

8-
/**
9-
* @author Julio Gutierrez
10-
*
11-
* Sep 6, 2012
12-
*/
138
public class UbuntuOneApi extends DefaultApi10a {
149

1510
private static final String AUTHORIZATION_URL = "https://one.ubuntu.com/oauth/authorize/?oauth_token=%s";

scribejava-apis/src/main/java/com/github/scribejava/apis/VkontakteApi.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@
88
import com.github.scribejava.core.utils.OAuthEncoder;
99
import com.github.scribejava.core.utils.Preconditions;
1010

11-
/**
12-
* @author Boris G. Tsirkin &lt;[email protected]&gt;
13-
* @since 20.4.2011
14-
*/
1511
public class VkontakteApi extends DefaultApi20 {
1612

1713
private static final String AUTHORIZE_URL

scribejava-apis/src/test/java/com/github/scribejava/apis/examples/VkontakteExample.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@
1010
import com.github.scribejava.core.model.Verifier;
1111
import com.github.scribejava.core.oauth.OAuth20Service;
1212

13-
/**
14-
* @author Boris G. Tsirkin <[email protected]>
15-
* @since 20.4.2011
16-
*/
1713
public abstract class VkontakteExample {
1814

1915
private static final String NETWORK_NAME = "Vkontakte.ru";

scribejava-core/src/main/java/com/github/scribejava/core/builder/ServiceBuilder.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66

77
/**
88
* Implementation of the Builder pattern, with a fluent interface that creates a {@link OAuthService}
9-
*
10-
* @author Pablo Fernandez
119
*/
1210
public class ServiceBuilder extends AbstractServiceBuilder<ServiceBuilder> {
1311

scribejava-core/src/main/java/com/github/scribejava/core/builder/api/DefaultApi10a.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@
2929
* If your Api does something a bit different, you can override the different extractors or services, in order to
3030
* fine-tune the process. Please read the javadocs of the interfaces to get an idea of what to do.
3131
*
32-
* @author Pablo Fernandez
33-
*
3432
*/
3533
public abstract class DefaultApi10a {
3634

0 commit comments

Comments
 (0)