• R/O
  • HTTP
  • 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

Moxkiriyaプロジェクト事前開発用の作業部屋


Commit MetaInfo

Revision4f4c3ef6a55aeb9ab85b2c5175fd8da86f31d1c4 (tree)
Time2018-10-14 06:48:25
AuthorHarold_Andoh <andolloyd@gmai...>
CommiterHarold_Andoh

Log Message

[Moxkiriya7]

  • 初回起動時、NullPointerExceptionで落ちるバグを修正

Change Summary

Incremental Difference

--- a/src/com/wiki/standalone/moxkiriya/Main.java
+++ b/src/com/wiki/standalone/moxkiriya/Main.java
@@ -174,7 +174,8 @@ public class Main extends Application {
174174 Hashtable<String, String> settingsTable = dialog.getSettingsTable();
175175 String path = settingManager_.get(SettingManager.SETTINGSKEY_MOXKIRIYA_USER_DIR);
176176
177- if(selectedParty.isEmpty() == true) {
177+ if( (selectedParty == null)
178+ || (selectedParty.isEmpty() == true)) {
178179 selectedParty = dialog.getPartyName();
179180 }
180181