Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ In order to accept your pull request, we need you to submit a CLA. You only need
Complete your CLA here: <https://developers.facebook.com/opensource/cla>

## 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.

### 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:

Expand All @@ -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
2 changes: 1 addition & 1 deletion Parse/src/main/java/com/parse/LocalIdManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
6 changes: 0 additions & 6 deletions Parse/src/main/java/com/parse/ParseException.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This error code is unused in the project


/**
* Error code indicating the connection to the Parse servers failed.
*/
Expand Down
2 changes: 1 addition & 1 deletion Parse/src/main/java/com/parse/ParseUser.java
Original file line number Diff line number Diff line change
Expand Up @@ -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 <a href="http://parse.com">parse.com</a>.
* settings on your parse server.
* <p/>
* Upon successful completion of this {@link Task}, {@link ParseSession} APIs will be available
* for use.
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not referenced in the README

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you update also parseplatform.github.io to parseplatform.org and parseplatform.github.io/docs/android/guide/ to docs.parseplatform.oog/android/guide?


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