Skip to content
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

jdt.unit: fix javadoc #1206

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,9 @@ public class JUnitLaunchConfigurationConstants {
public static final String ATTR_TEST_NAME= JUnitCorePlugin.PLUGIN_ID + ".TESTNAME"; //$NON-NLS-1$

/**
* @Deprecated use {@link #ATTR_TEST_NAME}
* @deprecated use {@link #ATTR_TEST_NAME}
**/
@Deprecated(forRemoval= true, since= "2024-03" )
public static final String ATTR_TEST_METHOD_NAME= ATTR_TEST_NAME;

public static final String ATTR_KEEPRUNNING = JUnitCorePlugin.PLUGIN_ID+ ".KEEPRUNNING_ATTR"; //$NON-NLS-1$
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public static IStatus checkInSync(IResource[] resources) {
/**
* Makes the given resource committable. Committable means that it is
* writeable and that its content hasn't changed by calling
* <code>validateEdit</code> for the given resource on <tt>IWorkspace</tt>.
* <code>validateEdit</code> for the given resource on <code>IWorkspace</code>.
*
* @param resource the resource to be checked
* @param context the context passed to <code>validateEdit</code>
Expand All @@ -91,7 +91,7 @@ public static IStatus makeCommittable(IResource resource, Object context) {
* Makes the given resources committable. Committable means that all
* resources are writeable and that the content of the resources hasn't
* changed by calling <code>validateEdit</code> for a given file on
* <tt>IWorkspace</tt>.
* <code>IWorkspace</code>.
*
* @param resources the resources to be checked
* @param context the context passed to <code>validateEdit</code>
Expand Down
Loading