Expect continuation indent in text blocks · openrewrite/rewrite-migrate-java@04592ca (original) (raw)
Navigation Menu
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit 04592ca
Expect continuation indent in text blocks
1 file changed
Lines changed: 6 additions & 6 deletions
File tree
- src/test/java/org/openrewrite/java/migrate/lang
Lines changed: 6 additions & 6 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -69,18 +69,18 @@ void textBlock() { | ||
| 69 | 69 | package com.example.app; |
| 70 | 70 | class A { |
| 71 | 71 | String str = String.format(\""" |
| 72 | - foo | |
| 73 | - %s | |
| 74 | - \""", "a"); | |
| 72 | + foo | |
| 73 | + %s | |
| 74 | + \""", "a"); | |
| 75 | 75 | } |
| 76 | 76 | """, |
| 77 | 77 | """ |
| 78 | 78 | package com.example.app; |
| 79 | 79 | class A { |
| 80 | 80 | String str = \""" |
| 81 | - foo | |
| 82 | - %s | |
| 83 | - \""".formatted("a"); | |
| 81 | + foo | |
| 82 | + %s | |
| 83 | + \""".formatted("a"); | |
| 84 | 84 | } |
| 85 | 85 | """ |
| 86 | 86 | ), |