Bug 24428 - Odd Format for inline arrays
Summary: Odd Format for inline arrays
Status: RESOLVED DUPLICATE of bug 16231
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 2.0.1   Edit
Hardware: PC Windows 2000
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Olivier Thomann CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-10-04 20:34 EDT by Gary Gregory CLA
Modified: 2002-11-05 17:02 EST (History)
0 users

See Also:


Attachments
wacky code formatting example (1.07 KB, text/plain)
2002-10-04 20:36 EDT, Gary Gregory CLA
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Gary Gregory CLA 2002-10-04 20:34:04 EDT
My line width id 145. I hope this comes through in the posting...

Notice the line break: this.[BREAK]   logFatal(...

	protected ServerSocket newServerSocket() {
		ServerSocket serverSocket = null;
		try {
			serverSocket = new ServerSocket(this.getPort(), 
this.getListenBacklog(), InetAddress.getByName(this.getPortBindAddress()));
			try {
				serverSocket.setSoTimeout(this.getSoTimeout());
			} catch (SocketException ex) {
				this.logFatal
("CM.NewSocketServer.SocketException", new Object[] { this.getName(), 
Integer.toString(this.getSoTimeout()), ex });
			}
		} catch (BindException ex) {
			this
				.logFatal(new Object[] {
					new Association
("CM.NewSocketServer.BindException.1", new Object[] { this.getName(), 
Integer.toString(this.getPort())}),
					new Association
("CM.NewSocketServer.BindException.2", new Object[] {
				}),
					new Association
("CM.NewSocketServer.BindException.3", new Object[] { this.getName()}),
					new Association
("CM.NewSocketServer.BindException.4", new Object[] { this.getName(), ex }),
					});
		} catch (IOException ex) {
			this.logFatal("CM.NewSocketServer.IOException", new 
Object[] { this.getName(), ex });
		}
		return serverSocket;
	}
Comment 1 Gary Gregory CLA 2002-10-04 20:36:52 EDT
Created attachment 2111 [details]
wacky code formatting example
Comment 2 Kai-Uwe Maetzel CLA 2002-10-07 11:20:29 EDT
Core formatting issue.
Comment 3 Olivier Thomann CLA 2002-11-05 17:02:28 EST

*** This bug has been marked as a duplicate of 16231 ***