• R/O
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision2453 (tree)
Time2022-10-14 08:55:11
Authort_nakayama1971

Log Message

(empty log message)

Change Summary

Incremental Difference

--- trunk/framework/pjCom/src/main/java/project/common/master/MsgImpl.java (revision 2452)
+++ trunk/framework/pjCom/src/main/java/project/common/master/MsgImpl.java (revision 2453)
@@ -32,16 +32,6 @@
3232 */
3333 public final class MsgImpl implements Msg, IntervalCache {
3434
35- /** プロパティ名 */
36- private static final String PROP_NAME = "message";
37-
38- /** メッセージコード */
39- private static final String NO_CODE = "E99999";
40- /** メッセージステータス */
41- private static final String NO_STS = "E";
42- /** メッセージ */
43- private static final String NO_MSG = "メッセージ {0} は登録されていません。";
44-
4535 /** メッセージファイルアクセスキー ステータス */
4636 private static final String KEY_STS = "Status.";
4737 /** メッセージファイルアクセスキー メッセージ */
@@ -172,7 +162,7 @@
172162 */
173163 @Override
174164 public void setPropMessage() {
175- Env.setProperties(PROP_NAME, this.propMsg);
165+ Env.setProperties("message", this.propMsg);
176166 }
177167
178168 /**
@@ -257,7 +247,7 @@
257247 * @return メッセージ
258248 */
259249 public String getNoMessage(final String code) {
260- return this.format.format(NO_CODE, NO_MSG, code);
250+ return this.format.format("E99999", "メッセージ {0} は登録されていません。", code);
261251 }
262252
263253 /**
@@ -266,7 +256,7 @@
266256 * @return ステータス
267257 */
268258 public String getNoStatus() {
269- return NO_STS;
259+ return "E";
270260 }
271261
272262 /**