-
Notifications
You must be signed in to change notification settings - Fork 11
com.coala.core: Update urls coala-analyzer #32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -29,7 +29,7 @@ public class ExternalUtils { | |
|
|
||
| /** | ||
| * Invoke coala binary. | ||
| * | ||
| * | ||
| * @param file | ||
| * The IFile to run the analysis on. | ||
| * @param bear | ||
|
|
@@ -80,7 +80,7 @@ public void onProcessFailed(ExecuteException executeException) { | |
| System.out.println("coala ran successfully."); | ||
| } else if (exitValue == 2 | exitValue == 130) { | ||
| DialogUtils.showErrorDialog("Running coala failed", | ||
| "Invalid arguments were passed.\nThis is a bug please report this at https://gitter.im/coala-analyzer/coala"); | ||
| "Invalid arguments were passed.\nThis is a bug please report this at https://gitter.im/coala/coala"); | ||
| } else if (exitValue == 4) { | ||
| DialogUtils.showErrorDialog("Unsupported Python version", | ||
| "The Python version installed is not supported by coala"); | ||
|
|
@@ -108,7 +108,7 @@ public void onProcessFailed(ExecuteException executeException) { | |
|
|
||
| /** | ||
| * Run coala using the .coafile in the project directory. | ||
| * | ||
| * | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. unrelated change |
||
| * @param path | ||
| * The path to the project's root. | ||
| * @param project | ||
|
|
@@ -145,7 +145,7 @@ public void onProcessFailed(ExecuteException executeException) { | |
| System.out.println("coala ran successfully."); | ||
| } else if (exitValue == 2 | exitValue == 130) { | ||
| DialogUtils.showErrorDialog("Running coala failed", | ||
| "Invalid arguments were passed.\nThis is a bug please report this at https://gitter.im/coala-analyzer/coala"); | ||
| "Invalid arguments were passed.\nThis is a bug please report this at https://gitter.im/coala/coala"); | ||
| } else if (exitValue == 4) { | ||
| DialogUtils.showErrorDialog("Unsupported Python version", | ||
| "The Python version installed is not supported by coala"); | ||
|
|
@@ -174,7 +174,7 @@ public void onProcessFailed(ExecuteException executeException) { | |
|
|
||
| /** | ||
| * Get details of all bears that are available on the user's system. | ||
| * | ||
| * | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. unrelated change |
||
| * @return JSONArray containing details of bears. | ||
| */ | ||
| public static JSONArray getAvailableBears() throws ExecuteException, IOException { | ||
|
|
@@ -214,7 +214,7 @@ private static ArrayList<String> getBearSettings(String bearName) | |
|
|
||
| /** | ||
| * Process the JSON output of coala and add marker for each problem. | ||
| * | ||
| * | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. unrelated change |
||
| * @param json | ||
| * Output of running coala. | ||
| * @param file | ||
|
|
@@ -256,7 +256,7 @@ public static void processJsonAndMark(String json, IFile file) throws IOExceptio | |
|
|
||
| /** | ||
| * Process the JSON output of coala and add marker for each problem. | ||
| * | ||
| * | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. unrelated change |
||
| * @param json | ||
| * Output of running coala. | ||
| * @param project | ||
|
|
@@ -300,7 +300,7 @@ public static void processJsonAndMark(String json, IProject project) throws IOEx | |
|
|
||
| /** | ||
| * Searches for the given binary in the PATH environmental variable. | ||
| * | ||
| * | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. unrelated change |
||
| * @param binary | ||
| * The executable that needs to be checked | ||
| * @return True is the binary is present, false otherwise | ||
|
|
@@ -333,7 +333,7 @@ private static boolean isWindows() { | |
|
|
||
| /** | ||
| * Creates a problem marker. | ||
| * | ||
| * | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. unrelated change |
||
| * @param file | ||
| * The IFile to add markers on. | ||
| * @param lineNum | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unrelated change