From 08a76a1f2fe9ef13da820ff27cb4145240d8c33a Mon Sep 17 00:00:00 2001 From: Masaki Tagawa Date: Mon, 6 Nov 2017 18:25:12 +0900 Subject: [PATCH] Fix typo --- src/main/java/org/openbmp/db_rest/RestResponse.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/openbmp/db_rest/RestResponse.java b/src/main/java/org/openbmp/db_rest/RestResponse.java index 17ee235..ce7aa53 100644 --- a/src/main/java/org/openbmp/db_rest/RestResponse.java +++ b/src/main/java/org/openbmp/db_rest/RestResponse.java @@ -35,7 +35,7 @@ public static Response okWithBody(String body) { public static Response okWithBody(String body, Integer total_count) { Response.ResponseBuilder resp = Response.status(200).entity(body) .header("Access-Control-Allow-Origin", "*") - .header("Access-Control-Allow-Credentials ", "true") + .header("Access-Control-Allow-Credentials", "true") .header("Access-Control-Allow-Methods", "GET, POST") .allow("OPTIONS");