浏览代码

fix the field of class assignment error

/main
tom tom 3 年前
当前提交
cdeb7083
共有 5 个文件被更改,包括 21 次插入3 次删除
  1. 6
      com.unity.uiwidgets/Runtime/material/pickers/calendar_date_picker.cs
  2. 18
      Samples/UIWidgetsSamples_2019_4/Android/.idea/modules/Android.iml

6
com.unity.uiwidgets/Runtime/material/pickers/calendar_date_picker.cs


D.assert(initialDate != null);
D.assert(firstDate != null);
D.assert(lastDate != null);
initialDate = utils.dateOnly(initialDate.Value);
firstDate = utils.dateOnly(firstDate.Value);
lastDate = utils.dateOnly(lastDate.Value);
this.initialDate = utils.dateOnly(initialDate.Value);
this.firstDate = utils.dateOnly(firstDate.Value);
this.lastDate = utils.dateOnly(lastDate.Value);
D.assert(onDateChanged != null);
D.assert(initialCalendarMode != null);

18
Samples/UIWidgetsSamples_2019_4/Android/.idea/modules/Android.iml


<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.id=":" external.linked.project.path="$MODULE_DIR$/../.." external.root.project.path="$MODULE_DIR$/../.." external.system.id="GRADLE" type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="android-gradle" name="Android-Gradle">
<configuration>
<option name="GRADLE_PROJECT_PATH" value=":" />
<option name="LAST_SUCCESSFUL_SYNC_AGP_VERSION" />
<option name="LAST_KNOWN_AGP_VERSION" />
</configuration>
</facet>
</component>
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$/../.." />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
正在加载...
取消
保存