File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
app/src/main/java/me/s1204/benesse/dcha/test Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -158,8 +158,7 @@ public void onClick(final View v) {
158158 } else if (resId == R .id .exec_setForcedDisplaySize ) {
159159 String width = getBoxText (R .id .setForcedDisplaySize_width );
160160 String height = getBoxText (R .id .setForcedDisplaySize_height );
161- if (width .isEmpty () || height .isEmpty ()) makeText ("値を入力してください" );
162- makeText ("setForcedDisplaySize:" + mUtilService .setForcedDisplaySize (Integer .parseInt (width ), Integer .parseInt (height )));
161+ makeText (width .isEmpty () || height .isEmpty () ? "値を入力してください" : "setForcedDisplaySize:" + mUtilService .setForcedDisplaySize (Integer .parseInt (width ), Integer .parseInt (height )));
163162 }
164163 } catch (RemoteException ignored ) {
165164 } catch (SecurityException ignored ) {
You can’t perform that action at this time.
0 commit comments