(TypeDescription schema)
| 944 | } |
| 945 | |
| 946 | private static boolean hasTimestamp(TypeDescription schema) { |
| 947 | if (schema.getCategory() == TypeDescription.Category.TIMESTAMP) { |
| 948 | return true; |
| 949 | } |
| 950 | List<TypeDescription> children = schema.getChildren(); |
| 951 | if (children != null) { |
| 952 | for (TypeDescription child : children) { |
| 953 | if (hasTimestamp(child)) { |
| 954 | return true; |
| 955 | } |
| 956 | } |
| 957 | } |
| 958 | return false; |
| 959 | } |
| 960 | |
| 961 | private WriterEncryptionKey getKey(String keyName, |
| 962 | KeyProvider provider) throws IOException { |
no test coverage detected