Skip to content

Commit

Permalink
Addressing code review.
Browse files Browse the repository at this point in the history
  • Loading branch information
chipkent committed Nov 20, 2023
1 parent 26bc1c4 commit 796651c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@

/**
* Abstract class for generating Java code from methods of one or more classes.
*
* {@link #generateCode()} must be called to generate the code.
*/
public abstract class AbstractBasicJavaGenerator {
private static final Logger log = Logger.getLogger(AbstractBasicJavaGenerator.class.toString());
Expand Down
2 changes: 2 additions & 0 deletions Generators/src/main/java/io/deephaven/gen/JavaFunction.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@

/**
* A Java function description for use in code generation.
*
* JavaFunctions are equal if they have the same method names and parameter types.
*/
public class JavaFunction implements Comparable<JavaFunction> {
private static final Logger log = Logger.getLogger(JavaFunction.class.toString());
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending
* Copyright (c) 2016-2023 Deephaven Data Labs and Patent Pending
*/
package io.deephaven.libs;

Expand Down

0 comments on commit 796651c

Please sign in to comment.