-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fix a regression caused by 2b01ca7
- Loading branch information
Showing
7 changed files
with
91 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
independent-projects/qute/generator/src/main/java/io/quarkus/qute/generator/DotNames.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package io.quarkus.qute.generator; | ||
|
||
import java.util.concurrent.CompletionStage; | ||
import org.jboss.jandex.DotName; | ||
|
||
final class DotNames { | ||
|
||
static final DotName BOOLEAN = DotName.createSimple(Boolean.class.getName()); | ||
static final DotName BYTE = DotName.createSimple(Byte.class.getName()); | ||
static final DotName CHARACTER = DotName.createSimple(Character.class.getName()); | ||
static final DotName DOUBLE = DotName.createSimple(Double.class.getName()); | ||
static final DotName FLOAT = DotName.createSimple(Float.class.getName()); | ||
static final DotName INTEGER = DotName.createSimple(Integer.class.getName()); | ||
static final DotName LONG = DotName.createSimple(Long.class.getName()); | ||
static final DotName SHORT = DotName.createSimple(Short.class.getName()); | ||
static final DotName STRING = DotName.createSimple(String.class.getName()); | ||
static final DotName COMPLETION_STAGE = DotName.createSimple(CompletionStage.class.getName()); | ||
static final DotName OBJECT = DotName.createSimple(Object.class.getName()); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters