• R/O
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

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

Commit MetaInfo

Revision2110 (tree)
Zeit2020-07-29 09:47:05
Autort_nakayama1971

Log Message

(empty log message)

Ändern Zusammenfassung

Diff

--- trunk/framework/pjSvc/src/project/base/QueryAbstract.java (revision 2109)
+++ trunk/framework/pjSvc/src/project/base/QueryAbstract.java (revision 2110)
@@ -139,7 +139,7 @@
139139 */
140140 protected void putCommonParameter(final Map<String, Object> map) {
141141 final var user = Optional.ofNullable(getSessionUser());
142- map.putAll(user.map(SessionUser::getAttributeMap).orElse(Collections.emptyMap()));
142+ map.putAll(user.map(SessionUser::getAttributeMap).orElseGet(Collections::emptyMap));
143143 map.putAll(getProperty());
144144 map.put("Uid", getUid());
145145 map.put("DateTime", getDateTime());