Bug 572903 - Browser.setUrl(String url, String postData, String[] headers) should switch to varargs
Summary: Browser.setUrl(String url, String postData, String[] headers) should switch t...
Status: NEW
Alias: None
Product: Platform
Classification: Eclipse Project
Component: SWT (show other bugs)
Version: 4.17   Edit
Hardware: PC Windows 10
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Lars Vogel CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2021-04-16 03:55 EDT by Lars Vogel CLA
Modified: 2021-05-20 12:06 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Lars Vogel CLA 2021-04-16 03:55:46 EDT
We should do the API compliant change to varargs for setUrl

public boolean setUrl (String url, String postData, String[] headers) {
	checkWidget();
	if (url == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
	return webBrowser.setUrl (url, postData, headers);
}
Comment 1 Niraj Modi CLA 2021-05-20 12:06:41 EDT
Resetting milestone, please re-target as required.