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 {
}
} else {
// Issue 114: The user can select a project to resolve the
// The user can select a project to resolve the
// error.
ErrorReporter.reportInfo(MESSAGES.noProjectSelectedForDelete());
}
......@@ -204,7 +204,7 @@ public class ProjectToolbar extends Toolbar {
if (selectedProjects.size() == 1) {
downloadSource(selectedProjects.get(0));
} else {
// Issue 114: The user needs to select only one project.
// The user needs to select only one project.
ErrorReporter.reportInfo(MESSAGES.wrongNumberProjectsSelected());
}
}
......
......@@ -107,7 +107,7 @@ public class FileUploadWizard extends Wizard {
fileUploadedCallback);
break;
case FILE_TOO_LARGE:
// Issue 114: The user can resolve the problem by
// The user can resolve the problem by
// uploading a smaller file.
ErrorReporter.reportInfo(MESSAGES.fileTooLargeError());
break;
......
......@@ -74,7 +74,7 @@ public class ProjectUploadWizard extends Wizard {
ode.openYoungAndroidProjectInDesigner(uploadedProject);
break;
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
// line has been changed to report info not an error.
// This error is triggered when the user attempts to
......
......@@ -268,7 +268,7 @@ public class CodeblocksManager implements ConnectivityListener {
if (conn == null) {
if (codeblocksMustBeOpen) {
// 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.
ErrorReporter.reportInfo(MESSAGES.noCodeblocksConnection());
if (callback != null) {
......@@ -286,7 +286,7 @@ public class CodeblocksManager implements ConnectivityListener {
// Codeblocks was open, but has been closed or is unresponsive.
if (codeblocksMustBeOpen) {
// 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.
ErrorReporter.reportInfo(MESSAGES.codeblocksConnectionUnresponsive());
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