-
Notifications
You must be signed in to change notification settings - Fork 7
Table Overview: ignore Exception table #2087
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
base: main
Are you sure you want to change the base?
Conversation
Test Results130 tests ±0 130 ✅ ±0 20s ⏱️ -1s Results for commit ce02561. ± Comparison against base commit 47cf100. This pull request removes 9 and adds 9 tests. Note that renamed tests count towards both.♻️ This comment has been updated with latest results. |
...g.eclipse.set.feature.table/src/org/eclipse/set/feature/table/internal/TableServiceImpl.java
Outdated
Show resolved
Hide resolved
...g.eclipse.set.feature.table/src/org/eclipse/set/feature/table/internal/TableServiceImpl.java
Outdated
Show resolved
Hide resolved
| /** | ||
| * Nicht generierbar: | ||
| */ | ||
| public String TableOverviewPart_CantRendereTable; |
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.
@TruongQuangSB And rename it everywhere else 😅
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.
ok
|
@TruongQuangSB When I open a non transformable table before opening the table overview I still see that table in the "Nicht überprüft" category. But I think this is not easily solvable, isn't it? Everything is fine when I then click on "überprüfen". If it is not easily solvable then we should keep it as it is. |
@mariusheine yeah, i have forgot this case. It is easily to solvable, the |
| final TableInfo tableInfo = modelServiceMap.keySet() | ||
| .stream() | ||
| .filter(info -> info.shortcut() | ||
| .equals(extractShortcut(elementId))) | ||
| .findFirst() | ||
| .orElse(null); | ||
| if (tableInfo != null) { | ||
| nonTransformableTables.add(tableInfo); | ||
| broker.post(Events.TABLEERROR_CHANGED, null); | ||
| } |
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.
no need to find tableInfo after #2078
No description provided.