• 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

Revision2574 (tree)
Time2023-07-06 23:38:21
Authort_nakayama1971

Log Message

(empty log message)

Change Summary

Incremental Difference

--- trunk/framework/pjWeb/src/main/java/online/struts/action/BrowseAction.java (revision 2573)
+++ trunk/framework/pjWeb/src/main/java/online/struts/action/BrowseAction.java (revision 2574)
@@ -74,6 +74,8 @@
7474 * @param model 処理済項目が入った汎用モデル
7575 */
7676 default void view(final UniForm model) {
77- assert model != null;
77+ if (model == null) {
78+ throw new IllegalArgumentException();
79+ }
7880 }
7981 }