浏览代码

small error change

Kevin Trometer 8 年之前
父节点
当前提交
f695805f89
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      src/ui/view/AlgorithmMenu.java

+ 3 - 3
src/ui/view/AlgorithmMenu.java

@@ -178,16 +178,16 @@ public class AlgorithmMenu extends JMenu {
 			if (t instanceof CpsAlgorithm) {
 				controller.setAlgorithm(t);
 			} else {
-				JOptionPane.showMessageDialog(null, "Class does not Implement CpsAlgorithm!", "Error!",
+				JOptionPane.showMessageDialog(null, "Class does not implement CpsAlgorithm!", "Error!",
 						JOptionPane.ERROR_MESSAGE);
 				noneItem.doClick();
 			}
 		} catch (Exception e) {
 			if (missingCompiler) {
-				JOptionPane.showMessageDialog(null, "Missing Compiiler! Please install JDK!", "Error!",
+				JOptionPane.showMessageDialog(null, "Missing Compiiler! Please install the JDK!", "Error!",
 						JOptionPane.ERROR_MESSAGE);
 			} else if (instantiationError) {
-				JOptionPane.showMessageDialog(null, "Class does not Implement CpsAlgorithm!", "Error!",
+				JOptionPane.showMessageDialog(null, "Class does not implement CpsAlgorithm!", "Error!",
 						JOptionPane.ERROR_MESSAGE);
 				noneItem.doClick();
 			} else {