diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index dd7055fab..5c46b12b5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -26,7 +26,7 @@ In order to accept your pull request, we need you to submit a CLA. You only need Complete your CLA here: ## Bugs -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. +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. ### Known Issues 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. @@ -34,7 +34,7 @@ We use GitHub issues to track public bugs. We will keep a close eye on this and ### Reporting New Issues 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]. -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. +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. 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: @@ -56,11 +56,10 @@ We're still working on providing a code style for your IDE and getting a linter ## License By contributing to Parse Android SDK, you agree that your contributions will be licensed under its license. - [google-group]: https://groups.google.com/forum/#!forum/parse-developers [stack-overflow]: http://stackoverflow.com/tags/parse.com - [bug-reports]: https://www.parse.com/help#report - [rest-api]: https://www.parse.com/docs/rest/guide - [network-debugging-tool]: https://github.com/ParsePlatform/ParseInterceptors-Android/wiki + [bug-reports]: https://github.com/parse-community/parse-server + [rest-api]: http://docs.parseplatform.org/rest/guide/ + [network-debugging-tool]: https://github.com/square/okhttp/wiki/Interceptors [parse-api-console]: http://blog.parse.com/announcements/introducing-the-parse-api-console/ [stacktrace-or-gtfo]: http://i.imgur.com/jacoj.jpg [tests-dir]: /Parse/src/test/java/com/parse diff --git a/Parse/src/main/java/com/parse/LocalIdManager.java b/Parse/src/main/java/com/parse/LocalIdManager.java index 2641fa71b..a744234b4 100644 --- a/Parse/src/main/java/com/parse/LocalIdManager.java +++ b/Parse/src/main/java/com/parse/LocalIdManager.java @@ -129,7 +129,7 @@ synchronized String createLocalId() { if (!isLocalId(localId)) { throw new IllegalStateException("Generated an invalid local id: \"" + localId + "\". " - + "This should never happen. Contact us at https://parse.com/help"); + + "This should never happen. Open a bug at https://github.com/parse-community/parse-server"); } return localId; diff --git a/Parse/src/main/java/com/parse/ParseException.java b/Parse/src/main/java/com/parse/ParseException.java index 57c673149..d57b99cad 100644 --- a/Parse/src/main/java/com/parse/ParseException.java +++ b/Parse/src/main/java/com/parse/ParseException.java @@ -19,12 +19,6 @@ public class ParseException extends Exception { public static final int OTHER_CAUSE = -1; - /** - * Error code indicating that something has gone wrong with the server. If you get this error - * code, it is Parse's fault. Contact us at https://parse.com/help - */ - public static final int INTERNAL_SERVER_ERROR = 1; - /** * Error code indicating the connection to the Parse servers failed. */ diff --git a/Parse/src/main/java/com/parse/ParseUser.java b/Parse/src/main/java/com/parse/ParseUser.java index 1b84d2037..65d11bab9 100644 --- a/Parse/src/main/java/com/parse/ParseUser.java +++ b/Parse/src/main/java/com/parse/ParseUser.java @@ -1460,7 +1460,7 @@ public static void enableAutomaticUser() { /** * Enables revocable sessions. This method is only required if you wish to use * {@link ParseSession} APIs and do not have revocable sessions enabled in your application - * settings on parse.com. + * settings on your parse server. *

* Upon successful completion of this {@link Task}, {@link ParseSession} APIs will be available * for use. diff --git a/README.md b/README.md index 7daa9b676..df2f87f1d 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,6 @@ As of April 5, 2017, Parse, LLC has transferred this code to the parse-community [parse.com]: https://parseplatform.github.io/ [guide]: http://parseplatform.github.io/docs/android/guide/ - [blog]: https://blog.parse.com/ [latest]: https://search.maven.org/remote_content?g=com.parse&a=parse-android&v=LATEST [snap]: https://oss.sonatype.org/content/repositories/snapshots/