-
Notifications
You must be signed in to change notification settings - Fork 162
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Revert SummernoteConfig toolbarOptions code, Array.asList is unmodifiable #1157
Closed
r1gm
wants to merge
17
commits into
martin-g:wicket-10.x-bootstrap-5.x
from
r1gm:wicket-10.x-bootstrap-5.x
Closed
Changes from 16 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
db0f05a
update bootstrap italia to version 2.8.7
r1gm 181af71
typo fix
r1gm d9c98f7
exclude dependency, use current wicket-bootstrap webjar version
r1gm 410a67d
Bump org.webjars.npm:eonasdan__tempus-dominus from 6.9.9 to 6.9.10 (#…
dependabot[bot] ff7be79
Bump ch.qos.logback:logback-classic from 1.5.7 to 1.5.8 (#1141)
dependabot[bot] e2e9cf0
Bump jetty.version from 11.0.23 to 11.0.24 (#1139)
dependabot[bot] 81e793f
Bump org.webjars:jquery-ui from 1.13.3 to 1.14.0 (#1140)
dependabot[bot] 0c403ce
Bump org.apache.commons:commons-lang3 from 3.16.0 to 3.17.0 (#1137)
dependabot[bot] 2c25f07
Bump maven-surefire-plugin.version from 3.4.0 to 3.5.0 (#1136)
dependabot[bot] ce1f068
Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.8.0 to 3.10…
dependabot[bot] 5210837
Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.4.0 to 3.5…
dependabot[bot] f5001e5
Bump org.mockito:mockito-core from 5.12.0 to 5.13.0 (#1133)
dependabot[bot] 7c73d1c
Exclude org,webjars.npm:design-tokens-italia for bootstrap-italia theme
martin-g 75a50e0
Merge branch 'martin-g:wicket-10.x-bootstrap-5.x' into wicket-10.x-bo…
r1gm 5ad013c
Merge branch 'martin-g:wicket-10.x-bootstrap-5.x' into wicket-10.x-bo…
r1gm 046c015
revert problematic code to the good old code, Arrays.asList is unmodi…
r1gm 5dfca0b
Merge remote-tracking branch 'upstream/wicket-10.x-bootstrap-5.x' int…
r1gm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually we are trying to get rid of Guava usage.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this code acceptable ?
new ArrayList<>(Arrays.asList("picture", "link", "video", "table", "hr"));
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes!
Shorter:
new ArrayList<>(List.of("picture", "link", "video", "table", "hr"));
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Affirmative