/[classpath]/classpath/javax/swing/text/PlainView.java
ViewVC logotype

Diff of /classpath/javax/swing/text/PlainView.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.27 by rabbit78, Wed Oct 19 14:57:32 2005 UTC revision 1.28 by mark, Sun Oct 30 18:02:53 2005 UTC
# Line 255  public class PlainView extends View impl Line 255  public class PlainView extends View impl
255            }            }
256          catch (BadLocationException ex)          catch (BadLocationException ex)
257            {            {
258              assert false : "BadLocationException should not be thrown here.";              AssertionError ae = new AssertionError("Unexpected bad location");
259                ae.initCause(ex);
260                throw ae;
261            }            }
262                    
263          if (seg == null || seg.array == null || seg.count == 0)          if (seg == null || seg.array == null || seg.count == 0)
# Line 416  public class PlainView extends View impl Line 418  public class PlainView extends View impl
418            }            }
419          catch (BadLocationException ex)          catch (BadLocationException ex)
420            {            {
421              assert false : "BadLocationException should not be thrown here.";              AssertionError ae = new AssertionError("Unexpected bad location");
422                ae.initCause(ex);
423                throw ae;
424            }            }
425                                    
426          if (seg == null || seg.array == null || seg.count == 0)          if (seg == null || seg.array == null || seg.count == 0)

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.28

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26