Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
Merge pull request #136 from uio-bmi/bug-fix/sending-unnecessary-data…
Browse files Browse the repository at this point in the history
…-to-cega

change datatype from long to Long in FileDescriptor to make the field…
  • Loading branch information
Parisa68 authored Feb 15, 2024
2 parents 4dd5f98 + f578a46 commit 063128f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/no/elixir/fega/ltp/dto/FileDescriptor.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ public class FileDescriptor {
private String operation;

@SerializedName("filesize")
private long fileSize;
private Long fileSize;

@SerializedName("oldpath")
private String oldPath;

@SerializedName("file_last_modified")
private long fileLastModified;
private Long fileLastModified;

@SerializedName("content")
private String content;
Expand Down

0 comments on commit 063128f

Please sign in to comment.