### Eclipse Workspace Patch 1.0 #P org.eclipse.wst.jsdt.debug.ui Index: src/org/eclipse/wst/jsdt/debug/internal/ui/SWTFactory.java =================================================================== RCS file: /cvsroot/webtools/org.eclipse.jsdt/plugins/org.eclipse.wst.jsdt.debug.ui/src/org/eclipse/wst/jsdt/debug/internal/ui/SWTFactory.java,v retrieving revision 1.2 diff -u -r1.2 SWTFactory.java --- src/org/eclipse/wst/jsdt/debug/internal/ui/SWTFactory.java 24 Feb 2010 21:49:41 -0000 1.2 +++ src/org/eclipse/wst/jsdt/debug/internal/ui/SWTFactory.java 22 Mar 2010 15:28:02 -0000 @@ -281,7 +281,7 @@ * @return the new text widget */ public static Text createSingleText(Composite parent, int style, int hspan, String text) { - Text t = new Text(parent, SWT.SINGLE | SWT.BORDER | style); + Text t = new Text(parent, SWT.SINGLE | style); t.setFont(parent.getFont()); GridData gd = new GridData(GridData.FILL_HORIZONTAL); gd.horizontalSpan = hspan;