Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
mustache
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
JastAdd
mustache
Compare revisions
b78beaf579441f60e3cf8bbbcb9d99cd1ccedf33 to b9ad898b4da5d53ede0107c76f9f73fe818073a1
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
jastadd/mustache
Select target project
No results found
b9ad898b4da5d53ede0107c76f9f73fe818073a1
Select Git revision
Swap
Target
jastadd/mustache
Select target project
jastadd/mustache
1 result
b78beaf579441f60e3cf8bbbcb9d99cd1ccedf33
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
replace isBlank with java8 compatible method
· b9ad898b
René Schöne
authored
1 year ago
b9ad898b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Helpers.jrag
+1
-1
1 addition, 1 deletion
Helpers.jrag
with
1 addition
and
1 deletion
Helpers.jrag
View file @
b9ad898b
...
...
@@ -59,7 +59,7 @@ aspect Helpers {
if (value == null || value.equals("null")) {
return StringElement.of("null");
}
if (value.
isBlank
()) {
if (value.
trim().isEmpty
()) {
return StringElement.of(value);
}
// simple test, check for special characters
...
...
This diff is collapsed.
Click to expand it.