File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed
user-service/src/main/java/com/craftpilot/userservice/service Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -354,14 +354,16 @@ else if (itemMap.containsKey("modelId") || itemMap.containsKey("id") || itemMap.
354354 log .error ("JSON model verisi işlenirken hata: {}" , e .getMessage (), e );
355355 return Mono .error (e );
356356 }
357- /**
358- * Belirtilen JSON dosyasından modelleri yükler.
359- * ModelDataLoaderCommand için gereklidir.
360- *
361- * @param jsonFilePath JSON dosya yolu
362- * @return Yüklenen model sayısı
363- */
364- public Mono <Integer > loadModelsFromJson (String jsonFilePath ) {
357+ }
358+
359+ /**
360+ * Belirtilen JSON dosyasından modelleri yükler.
361+ * ModelDataLoaderCommand için gereklidir.
362+ *
363+ * @param jsonFilePath JSON dosya yolu
364+ * @return Yüklenen model sayısı
365+ */
366+ public Mono <Integer > loadModelsFromJson (String jsonFilePath ) {
365367 if (jsonFilePath == null || jsonFilePath .isEmpty ()) {
366368 return Mono .error (new IllegalArgumentException ("JSON dosya yolu belirtilmemiş" ));
367369 }
You can’t perform that action at this time.
0 commit comments