Skip to content
This repository was archived by the owner on Jun 18, 2019. It is now read-only.
Open
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
Binary file added Java/isenseapi-1.1.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions Java/src/edu/uml/cs/isense/api/API.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
*/

public class API {
private final String version_major = "4";
private final String version_major = "5";
private final String version_minor = "1";

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

This "?" removal warrants a major version # upgrade 👍

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

@stowellm 👍

private String version;

Expand Down Expand Up @@ -362,7 +362,7 @@ public ArrayList<RProjectField> getProjectFields(int projectId) {

try {
String reqResult = makeRequest(baseURL, "projects/" + projectId,
"?recur=true", "GET", null);
"recur=true", "GET", null);
JSONObject j = new JSONObject(reqResult);
JSONArray j2 = j.getJSONArray("fields");
for (int i = 0; i < j2.length(); i++) {
Expand Down