diff options
author | Jonathan Nieder <jrn@google.com> | 2018-11-20 16:18:44 -0800 |
---|---|---|
committer | Jonathan Nieder <jrn@google.com> | 2018-11-20 16:18:44 -0800 |
commit | 647cc8f6040cbcdeb6ca87f68ff70734357783c8 (patch) | |
tree | 005cc46f81b858ae9e1e5daffaaa0a6ca194f584 /org.eclipse.jgit.lfs.server | |
parent | e751c878b04a6d4d341fb8f9492783a70e1ebe86 (diff) | |
download | jgit-647cc8f6040cbcdeb6ca87f68ff70734357783c8.tar.gz jgit-647cc8f6040cbcdeb6ca87f68ff70734357783c8.zip |
Remove unnecessary modifiers from interfaces
This continues what commit d9ac7ddf1026123fee6c4477d172d614522dfc08
(Remove unnecessary modifiers from interfaces, 2018-11-15) started.
Change-Id: I89720985a5a986722a0dcb9b5e9bbc25996bd5b3
Diffstat (limited to 'org.eclipse.jgit.lfs.server')
-rw-r--r-- | org.eclipse.jgit.lfs.server/src/org/eclipse/jgit/lfs/server/LargeFileRepository.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.jgit.lfs.server/src/org/eclipse/jgit/lfs/server/LargeFileRepository.java b/org.eclipse.jgit.lfs.server/src/org/eclipse/jgit/lfs/server/LargeFileRepository.java index 4cb0277b64..c2439adf62 100644 --- a/org.eclipse.jgit.lfs.server/src/org/eclipse/jgit/lfs/server/LargeFileRepository.java +++ b/org.eclipse.jgit.lfs.server/src/org/eclipse/jgit/lfs/server/LargeFileRepository.java @@ -61,7 +61,7 @@ public interface LargeFileRepository { * id of the object to download * @return Action for downloading the object */ - public Response.Action getDownloadAction(AnyLongObjectId id); + Response.Action getDownloadAction(AnyLongObjectId id); /** * Get upload action @@ -72,7 +72,7 @@ public interface LargeFileRepository { * size of the object to be uploaded * @return Action for uploading the object */ - public Response.Action getUploadAction(AnyLongObjectId id, long size); + Response.Action getUploadAction(AnyLongObjectId id, long size); /** * Get verify action @@ -83,7 +83,7 @@ public interface LargeFileRepository { * doesn't support or require verification */ @Nullable - public Response.Action getVerifyAction(AnyLongObjectId id); + Response.Action getVerifyAction(AnyLongObjectId id); /** * Get size of an object @@ -94,5 +94,5 @@ public interface LargeFileRepository { * exist * @throws java.io.IOException */ - public long getSize(AnyLongObjectId id) throws IOException; + long getSize(AnyLongObjectId id) throws IOException; } |