src/share/classes/com/sun/tools/javadoc/SeeTagImpl.java

changeset 910
ebf7c13df6c0
parent 554
9d9f26857129
child 1357
c75be5bc5283
     1.1 --- a/src/share/classes/com/sun/tools/javadoc/SeeTagImpl.java	Fri Mar 04 11:33:37 2011 -0800
     1.2 +++ b/src/share/classes/com/sun/tools/javadoc/SeeTagImpl.java	Fri Mar 04 19:53:03 2011 -0800
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2008, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -358,14 +358,14 @@
    1.11  
    1.12          String parameters;
    1.13  
    1.14 -        StringBuffer typeId;
    1.15 +        StringBuilder typeId;
    1.16  
    1.17          ListBuffer<String> paramList;
    1.18  
    1.19          ParameterParseMachine(String parameters) {
    1.20              this.parameters = parameters;
    1.21              this.paramList = new ListBuffer<String>();
    1.22 -            typeId = new StringBuffer();
    1.23 +            typeId = new StringBuilder();
    1.24          }
    1.25  
    1.26          public String[] parseParameters() {
    1.27 @@ -464,6 +464,7 @@
    1.28      /**
    1.29       * Return the kind of this tag.
    1.30       */
    1.31 +    @Override
    1.32      public String kind() {
    1.33          return "@see";
    1.34      }

mercurial