We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2334d2d commit d0cbdafCopy full SHA for d0cbdaf
src/java/org/tensorics/core/expressions/Placeholder.java
@@ -10,16 +10,17 @@
10
11
/**
12
* Represents and unresolved expression which is simply identified by its name.
13
- *
+ *
14
* @author kaifox
15
* @param <R> the type of the result of the expression
16
*/
17
public class Placeholder<R> extends AbstractDeferredExpression<R> {
18
+ private static final long serialVersionUID = 1L;
19
20
private final String name;
21
22
public static <R> Placeholder<R> ofName(String name) {
- return new Placeholder<R>(name);
23
+ return new Placeholder<>(name);
24
}
25
26
private Placeholder(String name) {
0 commit comments