Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 96910836aca7ae604c406ee0d058887dbbf399a6 (plain) (blame)
1
2
3
4
5
6
7
public class X {
	public void foo() {
		if (TextRequest.REQ_INSERT == request.getType() || TextRequest.REQ_BACKSPACE == request.getType()
				|| TextRequest.REQ_DELETE == request.getType() || TextRequest.REQ_REMOVE_RANGE == request.getType())
			return getHost();
	}
}

Back to the top