Skip to content

Commit e1e01a6

Browse files
Jawnnypoorogerhu
authored andcommitted
Remove references to Parse.com (#631)
1 parent 6cfc4a0 commit e1e01a6

File tree

5 files changed

+7
-15
lines changed

5 files changed

+7
-15
lines changed

CONTRIBUTING.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ In order to accept your pull request, we need you to submit a CLA. You only need
2626
Complete your CLA here: <https://developers.facebook.com/opensource/cla>
2727

2828
## Bugs
29-
Although we try to keep developing on Parse easy, you still may run into some issues. General questions should be asked on [Google Groups][google-group], technical questions should be asked on [Stack Overflow][stack-overflow], and for everything else we'll be using GitHub issues.
29+
Although we try to keep developing on Parse easy, you still may run into some issues. Technical questions should be asked on [Stack Overflow][stack-overflow], and for everything else we'll be using GitHub issues.
3030

3131
### Known Issues
3232
We use GitHub issues to track public bugs. We will keep a close eye on this and try to make it clear when we have an internal fix in progress. Before filing a new issue, try to make sure your problem doesn't already exist.
3333

3434
### Reporting New Issues
3535
Not all issues are SDK issues. If you're unsure whether your bug is with the SDK or backend, you can test to see if it reproduces with our [REST API][rest-api] and [Parse API Console][parse-api-console]. If it does, you can report backend bugs [here][bug-reports].
3636

37-
To view the REST API network requests issued by the Parse SDK and responses from the Parse backend, please check out our [Network Debugging Tool][network-debugging-tool]. With this tool, you can either log network requests/responses to Android logcat, or log them to Chrome Debugger via Stetho.
37+
To view the REST API network requests issued by the Parse SDK and responses from the Parse backend, please check out [OkHttp Interceptors][network-debugging-tool]. With this tool, you can either log network requests/responses to Android logcat, or log them to Chrome Debugger via Stetho.
3838

3939
Details are key. The more information you provide us the easier it'll be for us to debug and the faster you'll receive a fix. Some examples of useful tidbits:
4040

@@ -56,11 +56,10 @@ We're still working on providing a code style for your IDE and getting a linter
5656
## License
5757
By contributing to Parse Android SDK, you agree that your contributions will be licensed under its license.
5858

59-
[google-group]: https://groups.google.com/forum/#!forum/parse-developers
6059
[stack-overflow]: http://stackoverflow.com/tags/parse.com
61-
[bug-reports]: https://www.parse.com/help#report
62-
[rest-api]: https://www.parse.com/docs/rest/guide
63-
[network-debugging-tool]: https://github.com/ParsePlatform/ParseInterceptors-Android/wiki
60+
[bug-reports]: https://github.com/parse-community/parse-server
61+
[rest-api]: http://docs.parseplatform.org/rest/guide/
62+
[network-debugging-tool]: https://github.com/square/okhttp/wiki/Interceptors
6463
[parse-api-console]: http://blog.parse.com/announcements/introducing-the-parse-api-console/
6564
[stacktrace-or-gtfo]: http://i.imgur.com/jacoj.jpg
6665
[tests-dir]: /Parse/src/test/java/com/parse

Parse/src/main/java/com/parse/LocalIdManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ synchronized String createLocalId() {
129129

130130
if (!isLocalId(localId)) {
131131
throw new IllegalStateException("Generated an invalid local id: \"" + localId + "\". "
132-
+ "This should never happen. Contact us at https://parse.com/help");
132+
+ "This should never happen. Open a bug at https://github.com/parse-community/parse-server");
133133
}
134134

135135
return localId;

Parse/src/main/java/com/parse/ParseException.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,6 @@ public class ParseException extends Exception {
1919

2020
public static final int OTHER_CAUSE = -1;
2121

22-
/**
23-
* Error code indicating that something has gone wrong with the server. If you get this error
24-
* code, it is Parse's fault. Contact us at https://parse.com/help
25-
*/
26-
public static final int INTERNAL_SERVER_ERROR = 1;
27-
2822
/**
2923
* Error code indicating the connection to the Parse servers failed.
3024
*/

Parse/src/main/java/com/parse/ParseUser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1460,7 +1460,7 @@ public static void enableAutomaticUser() {
14601460
/**
14611461
* Enables revocable sessions. This method is only required if you wish to use
14621462
* {@link ParseSession} APIs and do not have revocable sessions enabled in your application
1463-
* settings on <a href="http://parse.com">parse.com</a>.
1463+
* settings on your parse server.
14641464
* <p/>
14651465
* Upon successful completion of this {@link Task}, {@link ParseSession} APIs will be available
14661466
* for use.

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ As of April 5, 2017, Parse, LLC has transferred this code to the parse-community
6363

6464
[parse.com]: https://parseplatform.github.io/
6565
[guide]: http://parseplatform.github.io/docs/android/guide/
66-
[blog]: https://blog.parse.com/
6766

6867
[latest]: https://search.maven.org/remote_content?g=com.parse&a=parse-android&v=LATEST
6968
[snap]: https://oss.sonatype.org/content/repositories/snapshots/

0 commit comments

Comments
 (0)