fix-删除无用代码

This commit is contained in:
zhangran 2021-08-02 18:46:26 +08:00
parent 4cf3dcdb4b
commit 1201876ea3
2 changed files with 0 additions and 14 deletions

View File

@ -22,10 +22,4 @@ public interface FileManager {
*/ */
String uploadByStream(String bulkName, String keyPath, byte[] fileContent); String uploadByStream(String bulkName, String keyPath, byte[] fileContent);
/**
* get endpoint
*
* @return
*/
String getAliOssEndpoint();
} }

View File

@ -44,12 +44,4 @@ public class FileManagerImpl implements FileManager {
return aliOssService.uploadByStream(bulkName, keyPath, inputStream); return aliOssService.uploadByStream(bulkName, keyPath, inputStream);
} }
/**
* get endpoint
*
* @return
*/
public String getAliOssEndpoint() {
return aliOssService.getEndpoint();
}
} }