Skip to content

Commit 093e12d

Browse files
committed
style(apollo-portal): Format Code
1 parent fdf4616 commit 093e12d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apollo-portal/src/main/java/com/ctrip/framework/apollo/openapi/v1/controller/NamespaceController.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,21 +83,21 @@ public OpenAppNamespaceDTO createNamespace(@PathVariable String appId,
8383
@GetMapping(value = "/openapi/v1/envs/{env}/apps/{appId}/clusters/{clusterName}/namespaces")
8484
public List<OpenNamespaceDTO> findNamespaces(@PathVariable String appId, @PathVariable String env,
8585
@PathVariable String clusterName,
86-
@RequestParam(defaultValue="true") boolean fillItemDetail) {
86+
@RequestParam(defaultValue = "true") boolean fillItemDetail) {
8787
return this.namespaceOpenApiService.getNamespaces(appId, env, clusterName, fillItemDetail);
8888
}
8989

9090
@GetMapping(value = "/openapi/v1/envs/{env}/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName:.+}")
9191
public OpenNamespaceDTO loadNamespace(@PathVariable String appId, @PathVariable String env,
9292
@PathVariable String clusterName, @PathVariable String namespaceName,
93-
@RequestParam(defaultValue="true") boolean fillItemDetail) {
93+
@RequestParam(defaultValue = "true") boolean fillItemDetail) {
9494
return this.namespaceOpenApiService.getNamespace(appId, env, clusterName, namespaceName, fillItemDetail);
9595
}
9696

9797
@GetMapping(value = "/openapi/v1/envs/{env}/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/lock")
9898
public OpenNamespaceLockDTO getNamespaceLock(@PathVariable String appId, @PathVariable String env,
9999
@PathVariable String clusterName, @PathVariable
100-
String namespaceName) {
100+
String namespaceName) {
101101
return this.namespaceOpenApiService.getNamespaceLock(appId, env, clusterName, namespaceName);
102102
}
103103

0 commit comments

Comments
 (0)