Skip to content

Commit 2a4b461

Browse files
committed
build: keep jdk 1.8 on github actions. Will add more jdk progressively
1 parent 1cf383b commit 2a4b461

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.github/workflows/build-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
java_version: [1.8, 11, 13, 15, 17]
11+
java_version: [1.8]
1212
os: [ubuntu-latest, windows-latest, macOS-latest]
1313

1414
steps:

handlebars/src/main/java/com/github/jknack/handlebars/helper/HelperFunction.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/**
2+
* Copyright (c) 2012-2015 Edgar Espina
3+
*
4+
* This file is part of Handlebars.java.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
118
package com.github.jknack.handlebars.helper;
219

320
import java.lang.annotation.Retention;
@@ -12,6 +29,7 @@
1229

1330
/**
1431
* The name used to invoke the decorated helper function in a handlebars template.
32+
* @return Name or null/empty to use default method name.
1533
*/
1634
String value();
1735

0 commit comments

Comments
 (0)