Commit 5ae4847d authored by Vance Turnewitsch's avatar Vance Turnewitsch

Removed Issue 114: from the JavaDoc comments

parent 07d7873a
...@@ -127,7 +127,7 @@ public class ProjectToolbar extends Toolbar { ...@@ -127,7 +127,7 @@ public class ProjectToolbar extends Toolbar {
} }
} else { } else {
// Issue 114: The user can select a project to resolve the // The user can select a project to resolve the
// error. // error.
ErrorReporter.reportInfo(MESSAGES.noProjectSelectedForDelete()); ErrorReporter.reportInfo(MESSAGES.noProjectSelectedForDelete());
} }
...@@ -204,7 +204,7 @@ public class ProjectToolbar extends Toolbar { ...@@ -204,7 +204,7 @@ public class ProjectToolbar extends Toolbar {
if (selectedProjects.size() == 1) { if (selectedProjects.size() == 1) {
downloadSource(selectedProjects.get(0)); downloadSource(selectedProjects.get(0));
} else { } else {
// Issue 114: The user needs to select only one project. // The user needs to select only one project.
ErrorReporter.reportInfo(MESSAGES.wrongNumberProjectsSelected()); ErrorReporter.reportInfo(MESSAGES.wrongNumberProjectsSelected());
} }
} }
......
...@@ -107,7 +107,7 @@ public class FileUploadWizard extends Wizard { ...@@ -107,7 +107,7 @@ public class FileUploadWizard extends Wizard {
fileUploadedCallback); fileUploadedCallback);
break; break;
case FILE_TOO_LARGE: case FILE_TOO_LARGE:
// Issue 114: The user can resolve the problem by // The user can resolve the problem by
// uploading a smaller file. // uploading a smaller file.
ErrorReporter.reportInfo(MESSAGES.fileTooLargeError()); ErrorReporter.reportInfo(MESSAGES.fileTooLargeError());
break; break;
......
...@@ -74,7 +74,7 @@ public class ProjectUploadWizard extends Wizard { ...@@ -74,7 +74,7 @@ public class ProjectUploadWizard extends Wizard {
ode.openYoungAndroidProjectInDesigner(uploadedProject); ode.openYoungAndroidProjectInDesigner(uploadedProject);
break; break;
case NOT_PROJECT_ARCHIVE: case NOT_PROJECT_ARCHIVE:
// Issue 114: This may be a "severe" error; but in the // This may be a "severe" error; but in the
// interest of reducing the number of red errors, the // interest of reducing the number of red errors, the
// line has been changed to report info not an error. // line has been changed to report info not an error.
// This error is triggered when the user attempts to // This error is triggered when the user attempts to
......
...@@ -268,7 +268,7 @@ public class CodeblocksManager implements ConnectivityListener { ...@@ -268,7 +268,7 @@ public class CodeblocksManager implements ConnectivityListener {
if (conn == null) { if (conn == null) {
if (codeblocksMustBeOpen) { if (codeblocksMustBeOpen) {
// If codeblocks is not open, tell the user to open it. // If codeblocks is not open, tell the user to open it.
// Issue 114: The user can resolve the issue by opening // The user can resolve the issue by opening
// the codeblocks editor. // the codeblocks editor.
ErrorReporter.reportInfo(MESSAGES.noCodeblocksConnection()); ErrorReporter.reportInfo(MESSAGES.noCodeblocksConnection());
if (callback != null) { if (callback != null) {
...@@ -286,7 +286,7 @@ public class CodeblocksManager implements ConnectivityListener { ...@@ -286,7 +286,7 @@ public class CodeblocksManager implements ConnectivityListener {
// Codeblocks was open, but has been closed or is unresponsive. // Codeblocks was open, but has been closed or is unresponsive.
if (codeblocksMustBeOpen) { if (codeblocksMustBeOpen) {
// If codeblocks has been closed or is unresponsive, report that. // If codeblocks has been closed or is unresponsive, report that.
// Issue 114: The user can resolve this problem by restarting the // The user can resolve this problem by restarting the
// codeblocks editor. // codeblocks editor.
ErrorReporter.reportInfo(MESSAGES.codeblocksConnectionUnresponsive()); ErrorReporter.reportInfo(MESSAGES.codeblocksConnectionUnresponsive());
if (callback != null) { if (callback != null) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment