Skip to content

Commit

Permalink
remove descriptive label from preferences
Browse files Browse the repository at this point in the history
  • Loading branch information
danthe1st committed Dec 25, 2024
1 parent a731884 commit 7942586
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,6 @@ public Control createControl(Composite composite) {
addStringInput(customRegionGroup, FoldingMessages.DefaultJavaFoldingPreferenceBlock_CustomRegionStart, PreferenceConstants.EDITOR_FOLDING_CUSTOM_REGION_START);
addStringInput(customRegionGroup, FoldingMessages.DefaultJavaFoldingPreferenceBlock_CustomRegionEnd, PreferenceConstants.EDITOR_FOLDING_CUSTOM_REGION_END);

Label customRegionInfo = new Label(customRegionGroup, SWT.NONE);
customRegionInfo.setText(FoldingMessages.DefaultJavaFoldingPreferenceBlock_CustomRegionInfo);
GridData customRegionInfoGridData= new GridData(SWT.FILL, SWT.BEGINNING, true, false);
customRegionInfoGridData.horizontalSpan=2;
customRegionInfo.setLayoutData(customRegionInfoGridData);

return outer;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ private FoldingMessages() {
public static String DefaultJavaFoldingPreferenceBlock_custom_region_title;
public static String DefaultJavaFoldingPreferenceBlock_CustomRegionStart;
public static String DefaultJavaFoldingPreferenceBlock_CustomRegionEnd;
public static String DefaultJavaFoldingPreferenceBlock_CustomRegionInfo;
public static String EmptyJavaFoldingPreferenceBlock_emptyCaption;
public static String JavaFoldingStructureProviderRegistry_warning_providerNotFound_resetToDefault;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ DefaultJavaFoldingPreferenceBlock_customRegions= Custom folding regions
DefaultJavaFoldingPreferenceBlock_custom_region_title= Custom folding regions
DefaultJavaFoldingPreferenceBlock_CustomRegionStart= Text marking start of region
DefaultJavaFoldingPreferenceBlock_CustomRegionEnd= Text marking end of region
DefaultJavaFoldingPreferenceBlock_CustomRegionInfo= Custom folding regions allow creating regions to fold using a marker text for the start and end of the region in a comment.\nLeaving the fields for the start or end markers empty disables this feature.

JavaFoldingStructureProviderRegistry_warning_providerNotFound_resetToDefault= The ''{0}'' folding provider could not be found. Resetting to the default folding provider.

Expand Down

0 comments on commit 7942586

Please sign in to comment.