From a9c0365feb3b45d14f6497d6feb719b5756e27a7 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sat, 23 Mar 2024 16:32:23 +0100 Subject: [PATCH] method layout improvement --- .../instance/convertMultipartStreamingEntity.with..st | 4 +--- .../Seaside-Zinc-Core.package/monticello.meta/categories.st | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/repository/Seaside-Zinc-Core.package/ZnZincServerAdaptor.class/instance/convertMultipartStreamingEntity.with..st b/repository/Seaside-Zinc-Core.package/ZnZincServerAdaptor.class/instance/convertMultipartStreamingEntity.with..st index 44f8ee696..9810e6e59 100644 --- a/repository/Seaside-Zinc-Core.package/ZnZincServerAdaptor.class/instance/convertMultipartStreamingEntity.with..st +++ b/repository/Seaside-Zinc-Core.package/ZnZincServerAdaptor.class/instance/convertMultipartStreamingEntity.with..st @@ -9,9 +9,7 @@ convertMultipartStreamingEntity: anEntity with: aMultiValueDictionary partsDecodeWith: [ :znMimePart | aMultiValueDictionary at: znMimePart fieldName - add: (self codec url decode: (znMimePart hasEntity - ifTrue: [ znMimePart fieldValueString ] - ifFalse: [ '' ])) ] + add: (self codec url decode: (znMimePart hasEntity ifTrue: [ znMimePart fieldValueString ] ifFalse: [ '' ])) ] decodeFilesWith: [ :znMimePart :filePath | "Empty file + empty filename means that the file form field did not contain a value (no file was selected)." diff --git a/repository/Seaside-Zinc-Core.package/monticello.meta/categories.st b/repository/Seaside-Zinc-Core.package/monticello.meta/categories.st index 43806c615..dc2603941 100644 --- a/repository/Seaside-Zinc-Core.package/monticello.meta/categories.st +++ b/repository/Seaside-Zinc-Core.package/monticello.meta/categories.st @@ -1 +1 @@ -SystemOrganization addCategory: #'Seaside-Zinc-Core'! +self packageOrganizer ensurePackage: #'Seaside-Zinc-Core' withTags: #()!