Skip to content

Commit

Permalink
Remove mentions of preprocessing for now
Browse files Browse the repository at this point in the history
  • Loading branch information
fbiville committed Mar 15, 2024
1 parent 4addb3a commit 48c86f4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ In particular, it offers:
- the Java equivalent of the import specification, a.k.a. `org.neo4j.importer.v1.ImportSpecification`
- validation plugins (
see [built-in plugins](https://github.com/neo4j/import-spec/tree/main/src/main/java/org/neo4j/importer/v1/validation/plugin))
- pre-processing plugins (soon)

The library does **NOT**:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ public class ImportSpecificationDeserializer {
*/
public static ImportSpecification deserialize(Reader spec) throws SpecificationException {
JsonNode json = parse(spec);
// TODO: pre-processing
validate(SCHEMA, json);
ImportSpecification result = deserialize(json);
runExtraValidations(result);
Expand Down

0 comments on commit 48c86f4

Please sign in to comment.