[core] process TRACE operation (#3648)

This commit is contained in:
Jérémie Bresson 2019-08-15 15:59:59 +02:00 committed by William Cheng
parent dac370b7f7
commit 2ada4d90b4

View File

@ -974,6 +974,7 @@ public class DefaultGenerator extends AbstractGenerator implements Generator {
processOperation(resourcePath, "delete", path.getDelete(), ops, path); processOperation(resourcePath, "delete", path.getDelete(), ops, path);
processOperation(resourcePath, "patch", path.getPatch(), ops, path); processOperation(resourcePath, "patch", path.getPatch(), ops, path);
processOperation(resourcePath, "options", path.getOptions(), ops, path); processOperation(resourcePath, "options", path.getOptions(), ops, path);
processOperation(resourcePath, "trace", path.getTrace(), ops, path);
} }
return ops; return ops;
} }