Browse Source

remove comments

shanghaikid 2 years ago
parent
commit
c64f3b7f8d
1 changed files with 0 additions and 14 deletions
  1. 0 14
      client/src/utils/code/Java.ts

+ 0 - 14
client/src/utils/code/Java.ts

@@ -32,17 +32,3 @@ milvusClient.createIndex(
 
 
   return JavaCode;
   return JavaCode;
 };
 };
-
-//   const JavaCode = `import { MilvusClient } from '@zilliz/milvus2-sdk-node';
-// const client = new MilvusClient(milvus_address);
-
-// client.indexManager.createIndex({
-//   collection_name: '${collectionName}',
-//   index_name:'${indexName}',
-//   field_name: '${fieldName}',
-//   ${
-//     isScalarField
-//       ? ''
-//       : `extra_params: ${JSON.stringify(extraParams, null, 2)},`
-//   }
-// });