Skip to content

Commit

Permalink
spotless apply
Browse files Browse the repository at this point in the history
  • Loading branch information
akats7 committed Jul 20, 2023
1 parent 964cea6 commit d77f5cb
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ void transform() throws Exception {
new Object[][] {
{
"SomeAttribute",
Eval.me("{mbean -> mbean.getProperty(\"SomeAttribute\") == 'someValue' ? 'otherValue' : 'someValue'}")
Eval.me(
"{mbean -> mbean.getProperty(\"SomeAttribute\") == 'someValue' ? 'otherValue' : 'someValue'}")
},
})
.collect(Collectors.toMap(data -> (String) data[0], data -> (Closure<?>) data[1]));
Expand All @@ -152,7 +153,8 @@ void transformMultipleAttributes() throws Exception {
new Object[][] {
{
"SomeAttribute",
Eval.me("{mbean -> mbean.getProperty(\"SomeAttribute\") == 'someValue' ? 'newValue' : 'someValue'}")
Eval.me(
"{mbean -> mbean.getProperty(\"SomeAttribute\") == 'someValue' ? 'newValue' : 'someValue'}")
},
{
"AnotherAttribute",
Expand Down

0 comments on commit d77f5cb

Please sign in to comment.