Skip to content

Commit

Permalink
Reorganize.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcferretti committed Nov 6, 2024
1 parent d370a93 commit c39c6bb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 0 additions & 1 deletion Util/function/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ plugins {
dependencies {
api project(':qst-type')
api project(':engine-query-constants')
api project(':engine-time')

compileOnly libs.jetbrains.annotations

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
import io.deephaven.protobuf.ProtobufFunction;
import io.deephaven.protobuf.ProtobufFunctions;
import io.deephaven.protobuf.ProtobufFunctions.Builder;
import io.deephaven.protobuf.ToChunkTypeTransform;
import io.deephaven.qst.type.Type;
import io.deephaven.util.annotations.VisibleForTesting;
import io.deephaven.util.mutable.MutableInt;
Expand All @@ -55,7 +56,7 @@
/**
* This layer builds on top of {@link ProtobufDescriptorParser#parse(Descriptor, ProtobufDescriptorParserOptions)} by
* further transforming the functions according to {@link #withMostAppropriateType(TypedFunction)}, and then further
* adapting the functions to ensure they work for the expected chunk types {@link ToChunkTypeTransform}. This layer is
* adapting the functions to ensure they work for the expected chunk types {@link io.deephaven.protobuf.ToChunkTypeTransform}. This layer is
* also responsible for managing schema changes; in essence, ensuring that newly
* {@link ProtobufDescriptorParser#parse(Descriptor, ProtobufDescriptorParserOptions) parsed} {@link Descriptor
* descriptor} {@link TypedFunction functions} can be adapted into the original function type.
Expand Down
1 change: 1 addition & 0 deletions extensions/protobuf/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ dependencies {
api project(':util-function')
api libs.protobuf.java
implementation project(':engine-query-constants')
implementation project(':engine-time')

compileOnly project(':util-immutables')
annotationProcessor libs.immutables.value
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
package io.deephaven.function;
package io.deephaven.protobuf;

import io.deephaven.function.*;
import io.deephaven.qst.type.ArrayType;
import io.deephaven.qst.type.BoxedBooleanType;
import io.deephaven.qst.type.BoxedByteType;
Expand Down

0 comments on commit c39c6bb

Please sign in to comment.