[Groonga-commit] groonga/gcs [master] Remove garbage spaces

Back to archive index

Kouhei Sutou null+****@clear*****
Mon Nov 26 06:30:32 JST 2012


Kouhei Sutou	2012-11-26 06:30:32 +0900 (Mon, 26 Nov 2012)

  New Revision: 1270945a236d8f1931ed085eb6e2faa668762c0a
  https://github.com/groonga/gcs/commit/1270945a236d8f1931ed085eb6e2faa668762c0a

  Log:
    Remove garbage spaces

  Modified files:
    lib/api/2011-02-01/configuration.js

  Modified: lib/api/2011-02-01/configuration.js (+4 -4)
===================================================================
--- lib/api/2011-02-01/configuration.js    2012-11-22 19:04:06 +0900 (13cf32d)
+++ lib/api/2011-02-01/configuration.js    2012-11-26 06:30:32 +0900 (34fb1b4)
@@ -215,14 +215,14 @@ handlers.DescribeDomains = function(context, request, response, config) {
                   domainNames.map(function(name) {
                     try {
                       var domain = new Domain(name, context);
-                      return domain.exists() ? domain : null ;
+                      return domain.exists() ? domain : null;
                     } catch(error) {
                       return null;
                     }
                   }).filter(function(domain) {
                     return domain;
                   }) :
-                  Domain.getAll(context).reverse() ;
+                  Domain.getAll(context).reverse();
   var result = createDomainStatusList({
         domains:     domains,
         hostAndPort: getBaseHostAndPort(config, request)
@@ -425,14 +425,14 @@ handlers.DescribeIndexFields = function(context, request, response, config) {
                   fieldNames.map(function(name) {
                     try {
                       var field = domain.getIndexField(name);
-                      return field.exists() ? field : null ;
+                      return field.exists() ? field : null;
                     } catch(error) {
                       return null;
                     }
                   }).filter(function(field) {
                     return field;
                   }) :
-                  domain.indexFields ;
+                  domain.indexFields;
   var result = createIndexFields(fields);
   response.contentType('application/xml');
   response.send(createGenericResponse('DescribeIndexFields', result, request.id));
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index