<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/classpath.git, branch master</title>
<subtitle>git.savannah.gnu.org: git/classpath.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/classpath.git/'/>
<entry>
<title>Cleanup warnings in java.util.Collections.</title>
<updated>2016-03-18T20:29:35+00:00</updated>
<author>
<name>Andrew John Hughes</name>
<email>gnu_andrew@member.fsf.org</email>
</author>
<published>2016-03-18T20:29:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/classpath.git/commit/?id=5a1dcb13eaa6040be54cf3bc6772470a397b2c79'/>
<id>5a1dcb13eaa6040be54cf3bc6772470a397b2c79</id>
<content type='text'>
2016-03-18  Andrew John Hughes  &lt;gnu_andrew@member.fsf.org&gt;

	Cleanup warnings in java.util.Collections.
	* java/util/Collections.java:
	(EMPTY_SET): Suppress warnings generated by this
	legacy raw type.
	(EMPTY_LIST): Likewise.
	(EMPTY_MAP): Likewise.
	(compare(T, T, Comparator): Suppress warning
	generated by casting to Comparable.
	(binarySearch(List, Comparator)): Remove unneeded
	casts.
	(reverse(List)): Suppress warnings when casting
	to ListIterator&lt;Object&gt;. Cast is necessary as
	lists are modified.
	(reverseOrder(Comparator)): Return reverseOrder()
	rather than rcInstance.
	(reverseOrder()): Create appropriately typed
	ReverseComparator rather than using set instance.
	(rcInstance): Removed.
	(ReverseComparator.compare(T,T)): Suppress warnings
	from casting to Comparable&lt;T&gt;.
	(rotate(List,int)): Suppress warnings when casting
	to List&lt;Object&gt;. Cast is necessary to modify list.
	(shuffle(List,Random)): Likewise.
	(disjoint(Collection,Collection)): Remove unnecessary
	casting.
	(sort(List,Comparator)): Suppress warnings when casting
	the returned array. Arrays of a generic type can not
	be created.
	(swap(List,int,int)): Suppress warnings when casting
	list to List&lt;Object&gt;. This is necessary to use the
	set method.
	(entrySet().SynchronizedMapEntry): Type should not have its
	own type parameters which hide those of the map.
	(entrySet().SynchronizedSet.iterator()): Remove type
	parameters from SynchronizedMapEntry creation.
	(UnmodifiableList.list): Retain input type parameter
	so as to avoid casting.
	(UnmodifiableList.UnmodifiableList): Remove cast.
	(UnmodifiableList.li): Retain input type parameter
	so as to avoid casting.
	(UnmodifiableListIterator(ListIterator)): Likewise.
	(UnmodifiableMap(Map)): Suppress warnings from casting
	down to Map&lt;K,V&gt;.
	(UnmodifiableMap.entrySet()): Remove type parameters
	from UnmodifiableEntrySet creation.
	(UnmodifiableMap.UnmodifiableEntrySet): Remove type
	parameters and make instance-specific so we can
	use the UnmodifiableMap's type parameters.
	(UnmodifiableMap.UnmodifiableEntrySet.UnmodifiableMapEntry):
	Likewise.
	(UnmodifiableMap.UnmodifiableEntrySet.UnmodifiableMapEntry.e):
	Retain input type parameters so as to avoid casting.
	(UnmodifiableMap.UnmodifiableEntrySet.UnmodifiableMapEntry.UnmodifiableMapEntry(Map.Entry)):
	Likewise.
	(UnmodifiableMap.UnmodifiableEntrySet.UnmodifiableEntrySet(Set)):
	Likewise.
	(UnmodifiableMap.UnmodifiableEntrySet.UnmodifiableIterator.next()):
	Remove type parameters from UnmodifiableMapEntry creation.
	(UnmodifiableMap.toArray()): Likewise and improve method
	structure.
	(UnmodifiableMap.toArray(S[])): Remove type parameters from
	UnmodifiableMapEntry and suppress warnings from casting
	array members.
	(UnmodifiableSortedMap.sm): Retain input type parameters
	so as to avoid casting.
	(UnmodifiableSortedMap.UnmodifiableSortedMap(SortedMap)):
	Remove cast.
	(CheckedList.addAll(int,Collection)): Replace iterator with for-each
	loop, removing the need for casting.
	(CheckedMap.entrySet()): Remove type parameters from CheckedEntrySet
	creation and klass argument.
	(CheckedMap.CheckedEntrySet): Don't create additional
	type parameters, use those of the containing map as
	a instance class, not a static class.
	(keyType): Type should be K to match enclosing CheckedMap.
	(valueType): Type should be V to match enclosing CheckedMap.
	(CheckedMap.CheckedEntrySet.CheckedEntrySet(Set,Class,Class)):
	Suppress warnings when casting Map.Entry class.
	(CheckedMap.CheckedEntrySet.iterator()): Make return type
	Map.Entry&lt;K,V&gt; and create corresponding CheckedIterator instance.
	(CheckedMap.CheckedEntrySet.CheckedIterator.next()): Likewise
	with Map.Entry instance.
	(CheckedMap.CheckedEntrySet.CheckedIterator.Map.Entry.getKey()):
	Make return type K.
	(CheckedMap.CheckedEntrySet.CheckedIterator.Map.Entry.getValue()):
	Make return type V.
	(CheckedMap.CheckedEntrySet.CheckedIterator.Map.Entry.setValue(Object)):
	Likewise.
	(CheckedMap.putAll(Map)): Use for-each loop instead of Iterator,
	avoiding casting.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2016-03-18  Andrew John Hughes  &lt;gnu_andrew@member.fsf.org&gt;

	Cleanup warnings in java.util.Collections.
	* java/util/Collections.java:
	(EMPTY_SET): Suppress warnings generated by this
	legacy raw type.
	(EMPTY_LIST): Likewise.
	(EMPTY_MAP): Likewise.
	(compare(T, T, Comparator): Suppress warning
	generated by casting to Comparable.
	(binarySearch(List, Comparator)): Remove unneeded
	casts.
	(reverse(List)): Suppress warnings when casting
	to ListIterator&lt;Object&gt;. Cast is necessary as
	lists are modified.
	(reverseOrder(Comparator)): Return reverseOrder()
	rather than rcInstance.
	(reverseOrder()): Create appropriately typed
	ReverseComparator rather than using set instance.
	(rcInstance): Removed.
	(ReverseComparator.compare(T,T)): Suppress warnings
	from casting to Comparable&lt;T&gt;.
	(rotate(List,int)): Suppress warnings when casting
	to List&lt;Object&gt;. Cast is necessary to modify list.
	(shuffle(List,Random)): Likewise.
	(disjoint(Collection,Collection)): Remove unnecessary
	casting.
	(sort(List,Comparator)): Suppress warnings when casting
	the returned array. Arrays of a generic type can not
	be created.
	(swap(List,int,int)): Suppress warnings when casting
	list to List&lt;Object&gt;. This is necessary to use the
	set method.
	(entrySet().SynchronizedMapEntry): Type should not have its
	own type parameters which hide those of the map.
	(entrySet().SynchronizedSet.iterator()): Remove type
	parameters from SynchronizedMapEntry creation.
	(UnmodifiableList.list): Retain input type parameter
	so as to avoid casting.
	(UnmodifiableList.UnmodifiableList): Remove cast.
	(UnmodifiableList.li): Retain input type parameter
	so as to avoid casting.
	(UnmodifiableListIterator(ListIterator)): Likewise.
	(UnmodifiableMap(Map)): Suppress warnings from casting
	down to Map&lt;K,V&gt;.
	(UnmodifiableMap.entrySet()): Remove type parameters
	from UnmodifiableEntrySet creation.
	(UnmodifiableMap.UnmodifiableEntrySet): Remove type
	parameters and make instance-specific so we can
	use the UnmodifiableMap's type parameters.
	(UnmodifiableMap.UnmodifiableEntrySet.UnmodifiableMapEntry):
	Likewise.
	(UnmodifiableMap.UnmodifiableEntrySet.UnmodifiableMapEntry.e):
	Retain input type parameters so as to avoid casting.
	(UnmodifiableMap.UnmodifiableEntrySet.UnmodifiableMapEntry.UnmodifiableMapEntry(Map.Entry)):
	Likewise.
	(UnmodifiableMap.UnmodifiableEntrySet.UnmodifiableEntrySet(Set)):
	Likewise.
	(UnmodifiableMap.UnmodifiableEntrySet.UnmodifiableIterator.next()):
	Remove type parameters from UnmodifiableMapEntry creation.
	(UnmodifiableMap.toArray()): Likewise and improve method
	structure.
	(UnmodifiableMap.toArray(S[])): Remove type parameters from
	UnmodifiableMapEntry and suppress warnings from casting
	array members.
	(UnmodifiableSortedMap.sm): Retain input type parameters
	so as to avoid casting.
	(UnmodifiableSortedMap.UnmodifiableSortedMap(SortedMap)):
	Remove cast.
	(CheckedList.addAll(int,Collection)): Replace iterator with for-each
	loop, removing the need for casting.
	(CheckedMap.entrySet()): Remove type parameters from CheckedEntrySet
	creation and klass argument.
	(CheckedMap.CheckedEntrySet): Don't create additional
	type parameters, use those of the containing map as
	a instance class, not a static class.
	(keyType): Type should be K to match enclosing CheckedMap.
	(valueType): Type should be V to match enclosing CheckedMap.
	(CheckedMap.CheckedEntrySet.CheckedEntrySet(Set,Class,Class)):
	Suppress warnings when casting Map.Entry class.
	(CheckedMap.CheckedEntrySet.iterator()): Make return type
	Map.Entry&lt;K,V&gt; and create corresponding CheckedIterator instance.
	(CheckedMap.CheckedEntrySet.CheckedIterator.next()): Likewise
	with Map.Entry instance.
	(CheckedMap.CheckedEntrySet.CheckedIterator.Map.Entry.getKey()):
	Make return type K.
	(CheckedMap.CheckedEntrySet.CheckedIterator.Map.Entry.getValue()):
	Make return type V.
	(CheckedMap.CheckedEntrySet.CheckedIterator.Map.Entry.setValue(Object)):
	Likewise.
	(CheckedMap.putAll(Map)): Use for-each loop instead of Iterator,
	avoiding casting.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' of ssh://casa.fuseyism.com/home/andrew/projects/classpath/classpath</title>
<updated>2016-02-16T02:01:49+00:00</updated>
<author>
<name>Andrew John Hughes</name>
<email>gnu_andrew@member.fsf.org</email>
</author>
<published>2016-02-16T02:01:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/classpath.git/commit/?id=e7c13ee0cf2005206fbec0eca677f8cf66d5a103'/>
<id>e7c13ee0cf2005206fbec0eca677f8cf66d5a103</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make gjdoc depend on CREATE_WRAPPERS and remove unneeded Automake 1.11 dependencies.</title>
<updated>2016-02-16T02:01:07+00:00</updated>
<author>
<name>Andrew John Hughes</name>
<email>gnu_andrew@member.fsf.org</email>
</author>
<published>2015-08-20T02:41:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/classpath.git/commit/?id=358c61c143f7aaf0c56119142555347bef0189c5'/>
<id>358c61c143f7aaf0c56119142555347bef0189c5</id>
<content type='text'>
2015-08-07  Uros Bizjak  &lt;ubizjak@gmail.com&gt;

	* configure.ac:
	(tools/gjdoc): Depend on CREATE_WRAPPERS.
	* tools/Makefile.am: Remove unneeded
	dependencies for Automake 1.11.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2015-08-07  Uros Bizjak  &lt;ubizjak@gmail.com&gt;

	* configure.ac:
	(tools/gjdoc): Depend on CREATE_WRAPPERS.
	* tools/Makefile.am: Remove unneeded
	dependencies for Automake 1.11.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert undocumented changes accidentally included with last commit.</title>
<updated>2016-02-16T02:00:13+00:00</updated>
<author>
<name>Andrew John Hughes</name>
<email>gnu_andrew@member.fsf.org</email>
</author>
<published>2015-08-13T02:00:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/classpath.git/commit/?id=515871961ff934601b190bb32bf4fc42ddcf7e4d'/>
<id>515871961ff934601b190bb32bf4fc42ddcf7e4d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Cleanup warnings in gnu.xml.transform.* and gnu.xml.util.*.</title>
<updated>2016-02-16T01:48:09+00:00</updated>
<author>
<name>Andrew John Hughes</name>
<email>gnu_andrew@member.fsf.org</email>
</author>
<published>2016-02-16T01:45:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/classpath.git/commit/?id=5f98982eadb3c595d86d4af2825902a3ccf8f581'/>
<id>5f98982eadb3c595d86d4af2825902a3ccf8f581</id>
<content type='text'>
2016-01-04  Andrew John Hughes  &lt;gnu_andrew@member.fsf.org&gt;

	Cleanup warnings in gnu.xml.transform.* and
	gnu.xml.util.*.
	* gnu/xml/transform/AbstractNumberNode.java:
	(format(String,int[])): Add type parameters to
	lists and remove unnecessary casts.
	* gnu/xml/transform/ApplyTemplatesNode.java:
	Add type parameters to sortKeys and withParams.
	(ApplyTemplatesNode(Expr,QName,List,List,boolean)):
	Add type parameters to arguments.
	(clone(Stylesheet)): Add type parameters to lists
	and remove unnecessary casts.
	(doApply(Stylesheet,QName,Node,int,int,Node,Node)):
	Use a for-each loop rather than an Iterator. Remove
	unnecessary cast.
	(references(QName)): Likewise.
	* gnu/xml/transform/CallTemplateNode.java:
	Add type parameter to withParams.
	(CallTemplateNote(QName,List)): Add type parameters
	to List argument.
	(clone(Stylesheet)): Add type parameters to lists
	and remove unnecessary casts.
	(doApply(Stylesheet,QName,Node,int,int,Node,Node)):
	Use a for-each loop rather than an Iterator. Remove
	unnecessary cast.
	(references(QName)): Likewise.
	* gnu/xml/transform/CopyNode.java:
	(addAttributeSet(Stylesheet,QName,Node,int,int,
	Node,Node,String)): Replace Iterator usage with
	for-each loop.
	* gnu/xml/transform/CopyOfNode.java:
	(doApply(Stylesheet,QName,Node,int,int,Node,Node)):
	Likewise. Add type parameter to ns.
	* gnu/xml/transform/CurrentFunction.java:
	(evaluate(List)): Suppress warnings from method
	prescribed by javax.xml.xpath.XPathFunction.
	(setArguments(List)): Add type parameter to argument.
	* gnu/xml/transform/DocumentFunction.java:
	Add type parameters to args and values.
	(evaluate(List)): Suppress warnings from method
	prescribed by javax.xml.xpath.XPathFunction.
	(setArguments(List)): Add type parameter to argument.
	(evaluate(Node,int,int)): Add type arguments and
	remove unnecessary casts. Use a for-each loop rather
	than an Iterator.
	(document(String,String)): Add type parameters to
	return type and set creation.
	(clone(Object)): Add type parameter and remove
	unnecessary cast.
	(references(QName)): Likewise.
	* gnu/xml/transform/ElementAvailableFunction.java:
	Add type parameter to args, elements and in static
	initializer.
	(evaluate(List)): Suppress warnings from method
	prescribed by javax.xml.xpath.XPathFunction.
	(setArguments(List)): Add type parameter to argument.
	(evaluate(Node,int,int)): Remove unnecessary cast.
	(clone(Object)): Add type parameter and remove
	unnecessary cast.
	(references(QName)): Likewise.
	* gnu/xml/transform/ElementNode.java:
	Add type parameter to elementExcludeResultPrefixes.
	(EleemntNode(TemplateNode,TemplateNode,String,Node)):
	Add type parameters to collection creation.
	(addAttributeSet(Stylesheet,QName,Node,int,int,
	Node,Node,String)): Use a for-each loop rather than
	an Iterator.
	* gnu/xml/transform/FormatNumberFunction.java:
	Add type parameter to args.
	(evaluate(List)): Suppress warnings from method
	prescribed by javax.xml.xpath.XPathFunction.
	(setArguments(List)): Add type parameter to argument.
	(evaluate(Node,int,int)): Add type arguments and
	remove unnecessary casts. Use a for-each loop rather
	than an Iterator.
	(clone(Object)): Add type parameter and remove
	unnecessary cast.
	(references(QName)): Likewise.
	* gnu/xml/transform/FunctionAvailableFunction.java:
	Add type parameters to xsltFunctions, xpathFunctions
	and args and in static initializer.
	(evaluate(Node,int,int)): Remove unnecessary cast.
	(clone(Object)): Add type parameter and remove
	unnecessary cast.
	(references(QName)): Likewise.
	* gnu/xml/transform/GenerateIdFunction.java:
	Add type parameter to args.
	(evaluate(List)): Suppress warnings from method
	prescribed by javax.xml.xpath.XPathFunction.
	(setArguments(List)): Add type parameter to argument.
	(evaluate(Node,int,int)): Add type arguments and
	remove unnecessary casts.
	(clone(Object)): Add type parameter and remove
	unnecessary cast.
	(references(QName)): Likewise.
	* gnu/xml/transform/KeyFunction.java:
	Add type parameter to args.
	(evaluate(List)): Suppress warnings from method
	(setArguments(List)): Add type parameter to argument.
	(matches(Node)): Add type parameter.
	(evaluate(Node,int,int)): Add type arguments and
	remove unnecessary casts.  Use a for-each loop rather
	than an Iterator.
	(addKeyNodes(Node,Collection,String,Collection)):
	Add type parameters.
	(addKeyNodesIfMatch(Node,Collection,String,Collection)):
	Likewise. Use a for-each loop rather than an Iterator.
	(clone(Object)): Add type parameter and remove
	unnecessary cast.
	(references(QName)): Likewise.
	* gnu/xml/transform/LiteralNode.java:
	Add type parameter to elementExcludeResultPrefixes.
	(LiteralNode(Node)): Add type parameters.
	* gnu/xml/transform/NamespaceProxy.java:
	(getPrefixes(String)): Add type parameter.
	* gnu/xml/transform/NodeNumberNode.java:
	(Stylesheet,Node,int,int): Add type parameters.
	Remove redundant casts.
	* gnu/xml/transform/SAXSerializer.java:
	Add type parameters to namespaces.
	(isDefined(String,String)): Add type parameters.
	Use a for-each loop rather than an Iterator.
	(define(String,String)): Likewise. Remove
	redundant cast.
	(undefine(String,String)): Add type parameters.
	Use a for-each loop rather than an Iterator.
	* gnu/xml/transform/StreamSerializer.java:
	Add type parameters to HTML_BOOLEAN_ATTRIBUTES,
	HTML_URIS, namespaces and cdataSectionElements.
	Use type parameter in the static initialiser.
	(StreamSerializer(int,String,String)): Add
	type parameter.
	(setCdataSectionElements(Collection)): Likewise.
	(isDefined(String,String)): Add type parameters.
	Use a for-each loop rather than an Iterator.
	Remove redundant cast.
	(pushNamespaceContext()): Add type parameters.
	(define(String,String)): Likewise. Remove
	redundant cast.
	(isHTMLBoolean(Attr,String)): Likewise.
	* gnu/xml/transform/SystemPropertyFunction.java:
	Add type parameter to args.
	(evaluate(List)): Suppress warnings from method
	prescribed by javax.xml.xpath.XPathFunction.
	(setArguments(List)): Add type parameter to argument.
	(evaluate(Node,int,int)): Add type parameters and
	remove unnecessary casts.
	(clone(Object)): Likewise.
	(references(QName)): Likewise.
	* gnu/xml/transform/Template.java:
	Implement Comparable&lt;Template&gt;.
	(compareTo(Template)): Update type of argument
	from Object to Template, and remove unnecessary
	check/cast.
	* gnu/xml/transform/TransformerFactoryImpl.java:
	(getAssociatedStylesheet(Source,String,String,String)):
	Add type parameters and remove unnecessary cast.
	Use a for-each loop rather than an Iterator.
	(parseParameters(String)): Add type parameters.
	* gnu/xml/transform/TransformerImpl.java:
	(transform(Source,Result)): Add type parameters.
	(writeStreamResult(Node,StreamResult,int,String)): Likewise.
	(reindent(Document,Node,int)): Likewise and remove
	unnecessary casts.
	(convertCdataSectionElements(Document,Node,List)): Likewise.
	* gnu/xml/transform/TransformerOutputProperties.java:
	(TransformerOutputProperties(Stylesheet)): Add type
	parameters and remove redundant casts.
	(apply()): Add type parameter.
	* gnu/xml/transform/UnparsedEntityUriFunction.java:
	(evaluate(List)): Suppress warnings from method
	prescribed by javax.xml.xpath.XPathFunction.
	* gnu/xml/transform/ValueOfNode.java:
	(doApply(Stylesheet,QNae,Node,int,int,Node,Node)):
	Avoid unchecked cast by retrieving objects and
	then casting them to Node after instanceof test.
	* gnu/xml/transform/XSLComparator.java:
	Remove unneeded Iterator import.
	* gnu/xml/util/DomParser.java:
	(callEnd(Node)): Add type parameter.
	* gnu/xml/util/Resolver.java:
	Replace untyped Dictionary with typed Map.
	(addDirectoryMapping(Map,String,File)): Likewise.
	(Resolver(Map)): Likewise.
	(resolveEntity(String,String)): Remove redundant cast.
	* gnu/xml/util/SAXNullTransformerFactory.java:
	Add type parameters to params.
	* gnu/xml/util/XCat.java:
	(normalizePublicId(boolean,String)): Remove unused
	variable token.
	(Catalog): Add type parameters to publicIds,
	publicDelegations, systemIds,
	systemRewrites, systemDelegations, uris,
	uriRewrites, uriDelegations, doctypes and next.
	(Catalog.mapURI(String,Hashtable,Hashtable,Hashtable)):
	Add type parameters and remove redundant casts.
	(Catalog.getExternalSubset(String)): Remove redundant cast.
	(Catalog.checkDelegations(Hashtable,String,String,String)):
	Add type parameters and remove redundant casts.
	(Loader): Add type parameteres to externals &amp; bases.
	(Loader.absolutize(String)): Remove redundant cast.
	(Loader.startDocument()): Add type parameter.
	(Loader.externalEntityDecl(String,String,String)):
	Likewise.
	(Loader.startEntity(String)): Remove redundant cast.
	(Loader.endEntity(String)): Likewise.
	(Loader.startElement(String,String,String,Attributes)):
	Remove redundant casts and add type parameters.
	* gnu/xml/util/XMLWriter.java:
	Add type parameter to space.
	(startElement(String,String,String,Attributes):
	Remove redundant cast.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2016-01-04  Andrew John Hughes  &lt;gnu_andrew@member.fsf.org&gt;

	Cleanup warnings in gnu.xml.transform.* and
	gnu.xml.util.*.
	* gnu/xml/transform/AbstractNumberNode.java:
	(format(String,int[])): Add type parameters to
	lists and remove unnecessary casts.
	* gnu/xml/transform/ApplyTemplatesNode.java:
	Add type parameters to sortKeys and withParams.
	(ApplyTemplatesNode(Expr,QName,List,List,boolean)):
	Add type parameters to arguments.
	(clone(Stylesheet)): Add type parameters to lists
	and remove unnecessary casts.
	(doApply(Stylesheet,QName,Node,int,int,Node,Node)):
	Use a for-each loop rather than an Iterator. Remove
	unnecessary cast.
	(references(QName)): Likewise.
	* gnu/xml/transform/CallTemplateNode.java:
	Add type parameter to withParams.
	(CallTemplateNote(QName,List)): Add type parameters
	to List argument.
	(clone(Stylesheet)): Add type parameters to lists
	and remove unnecessary casts.
	(doApply(Stylesheet,QName,Node,int,int,Node,Node)):
	Use a for-each loop rather than an Iterator. Remove
	unnecessary cast.
	(references(QName)): Likewise.
	* gnu/xml/transform/CopyNode.java:
	(addAttributeSet(Stylesheet,QName,Node,int,int,
	Node,Node,String)): Replace Iterator usage with
	for-each loop.
	* gnu/xml/transform/CopyOfNode.java:
	(doApply(Stylesheet,QName,Node,int,int,Node,Node)):
	Likewise. Add type parameter to ns.
	* gnu/xml/transform/CurrentFunction.java:
	(evaluate(List)): Suppress warnings from method
	prescribed by javax.xml.xpath.XPathFunction.
	(setArguments(List)): Add type parameter to argument.
	* gnu/xml/transform/DocumentFunction.java:
	Add type parameters to args and values.
	(evaluate(List)): Suppress warnings from method
	prescribed by javax.xml.xpath.XPathFunction.
	(setArguments(List)): Add type parameter to argument.
	(evaluate(Node,int,int)): Add type arguments and
	remove unnecessary casts. Use a for-each loop rather
	than an Iterator.
	(document(String,String)): Add type parameters to
	return type and set creation.
	(clone(Object)): Add type parameter and remove
	unnecessary cast.
	(references(QName)): Likewise.
	* gnu/xml/transform/ElementAvailableFunction.java:
	Add type parameter to args, elements and in static
	initializer.
	(evaluate(List)): Suppress warnings from method
	prescribed by javax.xml.xpath.XPathFunction.
	(setArguments(List)): Add type parameter to argument.
	(evaluate(Node,int,int)): Remove unnecessary cast.
	(clone(Object)): Add type parameter and remove
	unnecessary cast.
	(references(QName)): Likewise.
	* gnu/xml/transform/ElementNode.java:
	Add type parameter to elementExcludeResultPrefixes.
	(EleemntNode(TemplateNode,TemplateNode,String,Node)):
	Add type parameters to collection creation.
	(addAttributeSet(Stylesheet,QName,Node,int,int,
	Node,Node,String)): Use a for-each loop rather than
	an Iterator.
	* gnu/xml/transform/FormatNumberFunction.java:
	Add type parameter to args.
	(evaluate(List)): Suppress warnings from method
	prescribed by javax.xml.xpath.XPathFunction.
	(setArguments(List)): Add type parameter to argument.
	(evaluate(Node,int,int)): Add type arguments and
	remove unnecessary casts. Use a for-each loop rather
	than an Iterator.
	(clone(Object)): Add type parameter and remove
	unnecessary cast.
	(references(QName)): Likewise.
	* gnu/xml/transform/FunctionAvailableFunction.java:
	Add type parameters to xsltFunctions, xpathFunctions
	and args and in static initializer.
	(evaluate(Node,int,int)): Remove unnecessary cast.
	(clone(Object)): Add type parameter and remove
	unnecessary cast.
	(references(QName)): Likewise.
	* gnu/xml/transform/GenerateIdFunction.java:
	Add type parameter to args.
	(evaluate(List)): Suppress warnings from method
	prescribed by javax.xml.xpath.XPathFunction.
	(setArguments(List)): Add type parameter to argument.
	(evaluate(Node,int,int)): Add type arguments and
	remove unnecessary casts.
	(clone(Object)): Add type parameter and remove
	unnecessary cast.
	(references(QName)): Likewise.
	* gnu/xml/transform/KeyFunction.java:
	Add type parameter to args.
	(evaluate(List)): Suppress warnings from method
	(setArguments(List)): Add type parameter to argument.
	(matches(Node)): Add type parameter.
	(evaluate(Node,int,int)): Add type arguments and
	remove unnecessary casts.  Use a for-each loop rather
	than an Iterator.
	(addKeyNodes(Node,Collection,String,Collection)):
	Add type parameters.
	(addKeyNodesIfMatch(Node,Collection,String,Collection)):
	Likewise. Use a for-each loop rather than an Iterator.
	(clone(Object)): Add type parameter and remove
	unnecessary cast.
	(references(QName)): Likewise.
	* gnu/xml/transform/LiteralNode.java:
	Add type parameter to elementExcludeResultPrefixes.
	(LiteralNode(Node)): Add type parameters.
	* gnu/xml/transform/NamespaceProxy.java:
	(getPrefixes(String)): Add type parameter.
	* gnu/xml/transform/NodeNumberNode.java:
	(Stylesheet,Node,int,int): Add type parameters.
	Remove redundant casts.
	* gnu/xml/transform/SAXSerializer.java:
	Add type parameters to namespaces.
	(isDefined(String,String)): Add type parameters.
	Use a for-each loop rather than an Iterator.
	(define(String,String)): Likewise. Remove
	redundant cast.
	(undefine(String,String)): Add type parameters.
	Use a for-each loop rather than an Iterator.
	* gnu/xml/transform/StreamSerializer.java:
	Add type parameters to HTML_BOOLEAN_ATTRIBUTES,
	HTML_URIS, namespaces and cdataSectionElements.
	Use type parameter in the static initialiser.
	(StreamSerializer(int,String,String)): Add
	type parameter.
	(setCdataSectionElements(Collection)): Likewise.
	(isDefined(String,String)): Add type parameters.
	Use a for-each loop rather than an Iterator.
	Remove redundant cast.
	(pushNamespaceContext()): Add type parameters.
	(define(String,String)): Likewise. Remove
	redundant cast.
	(isHTMLBoolean(Attr,String)): Likewise.
	* gnu/xml/transform/SystemPropertyFunction.java:
	Add type parameter to args.
	(evaluate(List)): Suppress warnings from method
	prescribed by javax.xml.xpath.XPathFunction.
	(setArguments(List)): Add type parameter to argument.
	(evaluate(Node,int,int)): Add type parameters and
	remove unnecessary casts.
	(clone(Object)): Likewise.
	(references(QName)): Likewise.
	* gnu/xml/transform/Template.java:
	Implement Comparable&lt;Template&gt;.
	(compareTo(Template)): Update type of argument
	from Object to Template, and remove unnecessary
	check/cast.
	* gnu/xml/transform/TransformerFactoryImpl.java:
	(getAssociatedStylesheet(Source,String,String,String)):
	Add type parameters and remove unnecessary cast.
	Use a for-each loop rather than an Iterator.
	(parseParameters(String)): Add type parameters.
	* gnu/xml/transform/TransformerImpl.java:
	(transform(Source,Result)): Add type parameters.
	(writeStreamResult(Node,StreamResult,int,String)): Likewise.
	(reindent(Document,Node,int)): Likewise and remove
	unnecessary casts.
	(convertCdataSectionElements(Document,Node,List)): Likewise.
	* gnu/xml/transform/TransformerOutputProperties.java:
	(TransformerOutputProperties(Stylesheet)): Add type
	parameters and remove redundant casts.
	(apply()): Add type parameter.
	* gnu/xml/transform/UnparsedEntityUriFunction.java:
	(evaluate(List)): Suppress warnings from method
	prescribed by javax.xml.xpath.XPathFunction.
	* gnu/xml/transform/ValueOfNode.java:
	(doApply(Stylesheet,QNae,Node,int,int,Node,Node)):
	Avoid unchecked cast by retrieving objects and
	then casting them to Node after instanceof test.
	* gnu/xml/transform/XSLComparator.java:
	Remove unneeded Iterator import.
	* gnu/xml/util/DomParser.java:
	(callEnd(Node)): Add type parameter.
	* gnu/xml/util/Resolver.java:
	Replace untyped Dictionary with typed Map.
	(addDirectoryMapping(Map,String,File)): Likewise.
	(Resolver(Map)): Likewise.
	(resolveEntity(String,String)): Remove redundant cast.
	* gnu/xml/util/SAXNullTransformerFactory.java:
	Add type parameters to params.
	* gnu/xml/util/XCat.java:
	(normalizePublicId(boolean,String)): Remove unused
	variable token.
	(Catalog): Add type parameters to publicIds,
	publicDelegations, systemIds,
	systemRewrites, systemDelegations, uris,
	uriRewrites, uriDelegations, doctypes and next.
	(Catalog.mapURI(String,Hashtable,Hashtable,Hashtable)):
	Add type parameters and remove redundant casts.
	(Catalog.getExternalSubset(String)): Remove redundant cast.
	(Catalog.checkDelegations(Hashtable,String,String,String)):
	Add type parameters and remove redundant casts.
	(Loader): Add type parameteres to externals &amp; bases.
	(Loader.absolutize(String)): Remove redundant cast.
	(Loader.startDocument()): Add type parameter.
	(Loader.externalEntityDecl(String,String,String)):
	Likewise.
	(Loader.startEntity(String)): Remove redundant cast.
	(Loader.endEntity(String)): Likewise.
	(Loader.startElement(String,String,String,Attributes)):
	Remove redundant casts and add type parameters.
	* gnu/xml/util/XMLWriter.java:
	Add type parameter to space.
	(startElement(String,String,String,Attributes):
	Remove redundant cast.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add remaining javax.lang.model.util classes for Java 7.</title>
<updated>2015-12-22T01:59:02+00:00</updated>
<author>
<name>Andrew John Hughes</name>
<email>gnu_andrew@member.fsf.org</email>
</author>
<published>2015-11-27T08:22:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/classpath.git/commit/?id=11d1d8efc1b17eb87b4cd6aa5ae82f67cb862e96'/>
<id>11d1d8efc1b17eb87b4cd6aa5ae82f67cb862e96</id>
<content type='text'>
2015-11-26  Andrew John Hughes  &lt;gnu_andrew@member.fsf.org&gt;

	* javax/lang/model/util/AbstractAnnotationValueVisitor6.java:
	Fix missing brace in Javadoc.
	* javax/lang/model/util/AbstractAnnotationValueVisitor7.java:
	New abstract class.
	(AbstractAnnotationValueVisitor7()): Implemented.
	* javax/lang/model/util/AbstractElementVisitor7.java,
	New abstract class.
	(AbstractElementVisitor7()): Implemented.
	* javax/lang/model/util/AbstractTypeVisitor6.java:
	Fix missing brace in Javadoc.
	* javax/lang/model/util/AbstractTypeVisitor7.java:
	New abstract class.
	(AbstractTypeVisitor7()): Implemented.
	(visitUnion(UnionType,P)): Likewise.
	* javax/lang/model/util/ElementKindVisitor6.java:
	(visitVariableAsResourceVariable(VariableElement,P)):
	Should call visitUnknown for version 6.
	* javax/lang/model/util/ElementKindVisitor7.java:
	New class.
	(ElementKindVisitor7()): Implemented.
	(ElementKindVisitor7(R)): Likewise.
	(visitVariableAsResourceVariable(VariableElement,P)):
	Implemented to return the result of defaultAction.
	* javax/lang/model/util/ElementScanner6.java:
	Fix missing brace in Javadoc. Add missing @return
	documentation.
	(visitVariable(VariableElement,P)): Should call visitUnknown
	on 6 if the element is a resource variable element.
	* javax/lang/model/util/ElementScanner7.java,
	New class.
	(ElementScanner7()): Implemented.
	(ElementScanner7(R)): Likewise.
	(visitVariable(VariableElement,P)): Implemented.
	* javax/lang/model/util/SimpleAnnotationValueVisitor7.java:
	New class.
	(SimpleAnnotationValueVisitor7()): Implemented.
	(SimpleAnnotationValueVisitor7(R)): Likewise.
	* javax/lang/model/util/SimpleElementVisitor6.java:
	(visitVariable(VariableElement,P)): Should call visitUnknown
	on 6 if the element is a resource variable element.
	* javax/lang/model/util/SimpleElementVisitor7.java:
	New class.
	(SimpleElementVisitor7()): Implemented.
	(SimpleElementVisitor7(R)): Likewise.
	(visitVariable(VariableElement,P)): Implemented.
	* javax/lang/model/util/SimpleTypeVisitor6.java:
	(SimpleTypeVisitor6): Fix copy-and-paste error in documentation.
	* javax/lang/model/util/SimpleTypeVisitor7.java:
	New class.
	(SimpleTypeVisitor7()): Implemented.
	(SimpleTypeVisitor7(R)): Likewise.
	(visitUnion(UnionType,P)): Implemented.
	* javax/lang/model/util/TypeKindVisitor7.java,
	New class.
	(TypeKindVisitor7()): Implemented.
	(TypeKindVisitor7(R)): Likewise.
	(visitUnion(UnionType,P)): Implemented.

Signed-off-by: Andrew John Hughes &lt;gnu_andrew@member.fsf.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2015-11-26  Andrew John Hughes  &lt;gnu_andrew@member.fsf.org&gt;

	* javax/lang/model/util/AbstractAnnotationValueVisitor6.java:
	Fix missing brace in Javadoc.
	* javax/lang/model/util/AbstractAnnotationValueVisitor7.java:
	New abstract class.
	(AbstractAnnotationValueVisitor7()): Implemented.
	* javax/lang/model/util/AbstractElementVisitor7.java,
	New abstract class.
	(AbstractElementVisitor7()): Implemented.
	* javax/lang/model/util/AbstractTypeVisitor6.java:
	Fix missing brace in Javadoc.
	* javax/lang/model/util/AbstractTypeVisitor7.java:
	New abstract class.
	(AbstractTypeVisitor7()): Implemented.
	(visitUnion(UnionType,P)): Likewise.
	* javax/lang/model/util/ElementKindVisitor6.java:
	(visitVariableAsResourceVariable(VariableElement,P)):
	Should call visitUnknown for version 6.
	* javax/lang/model/util/ElementKindVisitor7.java:
	New class.
	(ElementKindVisitor7()): Implemented.
	(ElementKindVisitor7(R)): Likewise.
	(visitVariableAsResourceVariable(VariableElement,P)):
	Implemented to return the result of defaultAction.
	* javax/lang/model/util/ElementScanner6.java:
	Fix missing brace in Javadoc. Add missing @return
	documentation.
	(visitVariable(VariableElement,P)): Should call visitUnknown
	on 6 if the element is a resource variable element.
	* javax/lang/model/util/ElementScanner7.java,
	New class.
	(ElementScanner7()): Implemented.
	(ElementScanner7(R)): Likewise.
	(visitVariable(VariableElement,P)): Implemented.
	* javax/lang/model/util/SimpleAnnotationValueVisitor7.java:
	New class.
	(SimpleAnnotationValueVisitor7()): Implemented.
	(SimpleAnnotationValueVisitor7(R)): Likewise.
	* javax/lang/model/util/SimpleElementVisitor6.java:
	(visitVariable(VariableElement,P)): Should call visitUnknown
	on 6 if the element is a resource variable element.
	* javax/lang/model/util/SimpleElementVisitor7.java:
	New class.
	(SimpleElementVisitor7()): Implemented.
	(SimpleElementVisitor7(R)): Likewise.
	(visitVariable(VariableElement,P)): Implemented.
	* javax/lang/model/util/SimpleTypeVisitor6.java:
	(SimpleTypeVisitor6): Fix copy-and-paste error in documentation.
	* javax/lang/model/util/SimpleTypeVisitor7.java:
	New class.
	(SimpleTypeVisitor7()): Implemented.
	(SimpleTypeVisitor7(R)): Likewise.
	(visitUnion(UnionType,P)): Implemented.
	* javax/lang/model/util/TypeKindVisitor7.java,
	New class.
	(TypeKindVisitor7()): Implemented.
	(TypeKindVisitor7(R)): Likewise.
	(visitUnion(UnionType,P)): Implemented.

Signed-off-by: Andrew John Hughes &lt;gnu_andrew@member.fsf.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' of ../classpath</title>
<updated>2015-10-14T03:47:24+00:00</updated>
<author>
<name>Andrew John Hughes</name>
<email>gnu_andrew@member.fsf.org</email>
</author>
<published>2015-10-14T03:47:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/classpath.git/commit/?id=9f9fe8af0e2d940a8ebd7d7acd94905cb5778419'/>
<id>9f9fe8af0e2d940a8ebd7d7acd94905cb5778419</id>
<content type='text'>
Conflicts:
	ChangeLog
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	ChangeLog
</pre>
</div>
</content>
</entry>
<entry>
<title>Add remaining javax.lang.model.util classes for Java 6.</title>
<updated>2015-09-27T00:35:22+00:00</updated>
<author>
<name>Andrew John Hughes</name>
<email>gnu_andrew@member.fsf.org</email>
</author>
<published>2015-09-27T00:35:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/classpath.git/commit/?id=f41a2c18c6dd259d21cf72a0e66e68c7a0c9a808'/>
<id>f41a2c18c6dd259d21cf72a0e66e68c7a0c9a808</id>
<content type='text'>
2015-09-26  Andrew John Hughes  &lt;gnu_andrew@member.fsf.org&gt;

	* javax/lang/model/type/WildcardType.java:
	Remove unneeded import.
	* javax/lang/model/util/AbstractTypeVisitor6.java:
	Implemented.
	(AbstractTypeVisitor6()): Implemented.
	(visit(TypeMirror)): Likewise.
	(visit(TypeMirror,P)): Likewise.
	(visitUnknown(TypeMirror, P)): Likewise.
	(visitUnion(TypeMirror, P)): Likewise.
	* javax/lang/model/util/ElementKindVisitor6.java:
	Implemented.
	(ElementKindVisitor6): Implemented.
	(ElementKindVisitor6(R)): Likewise.
	(visitExecutable(ExecutableElement,P)): Likewise.
	(visitExecutableAsConstructor(ExecutableElement,P)): Likewise.
	(visitExecutableAsInstanceInit(ExecutableElement,P)): Likewise.
	(visitExecutableAsMethod(ExecutableElement,P)): Likewise.
	(visitExecutableAsStaticInit(ExecutableElement,P)): Likewise.
	(visitPackage(PackageElement,P)): Likewise.
	(visitTypeAsAnnotationType(TypeElement,P)): Likewise.
	(visitTypeAsClass(TypeElement,P)): Likewise.
	(visitTypeAsEnum(TypeElement,P)): Likewise.
	(visitTypeAsInterface(TypeElement,P)): Likewise.
	(visitTypeParameter(TypeParameterElement,P)): Likewise.
	(visitVariable(VariableElement,P)): Likewise.
	(visitVariableAsEnumConstant(VariableElement,P)): Likewise.
	(visitVariableAsExceptionParameter(VariableElement,P)): Likewise.
	(visitVariableAsField(VariableElement,P)): Likewise.
	(visitVariableAsLocalVariable(VariableElement,P)): Likewise.
	(visitVariableAsParameter(VariableElement,P)): Likewise.
	(visitVariableAsResourceVariable(VariableElement,P)): Likewise.
	* javax/lang/model/util/SimpleAnnotationValueVisitor6.java:
	(DEFAULT_VALUE): Added.
	(SimpleAnnotationValueVisitor6()): Implemented.
	(SimpleAnnotationValueVisitor6(R)): Likewise.
	(defaultAction(Object,P)): Likewise.
	(visitBoolean(boolean,P)): Likewise.
	(visitByte(byte,P)): Likewise.
	(visitChar(char,P)): Likewise.
	(visitDouble(double,P)): Likewise.
	(visitFloat(float,P)): Likewise.
	(visitInt(int,P)): Likewise.
	(visitLong(long,P)): Likewise.
	(visitShort(short,P)): Likewise.
	(visitString(String,P)): Likewise.
	(visitType(TypeMirror,P)): Likewise.
	(visitEnumConstant(VariableElement,P)): Likewise.
	(visitAnnotation(AnnotationMirror,P)): Likewise.
	(visitArray(List,P)): Likewise.
	* javax/lang/model/util/SimpleElementVisitor6.java:
	Fix missing brace in Javadoc. Add missing @return
	documentation.
	* javax/lang/model/util/SimpleTypeVisitor6.java:
	(DEFAULT_VALUE): Added.
	(SimpleTypeVisitor6()): Implemented.
	(SimpleTypeVisitor6(R)): Likewise.
	(defaultAction(TypeMirror,P)): Likewise.
	(visitPrimitive(PrimitiveType,P)): Likewise.
	(visitNull(NullType,P)): Likewise.
	(visitArray(ArrayType,P)): Likewise.
	(visitDeclared(DeclaredType,P)): Likewise.
	(visitError(ErrorType,P)): Likewise.
	(visitTypeVariable(TypeVariable,P)): Likewise.
	(visitWildcard(WildcardType,P)): Likewise.
	(visitExecutable(ExecutableType,P)): Likewise.
	(visitNoType(NoType,P)): Likewise.
	* javax/lang/model/util/TypeKindVisitor6.java:
	(TypeKindVisitor6()): Implemented.
	(TypeKindVisitor6(R)): Likewise.
	(visitNoType(NoType,P)): Likewise.
	(visitNoTypeAsNone(NoType,P)): Likewise.
	(visitNoTypeAsPackage(NoType,P)): Likewise.
	(visitNoTypeAsVoid(NoType,P)): Likewise.
	(visitPrimitive(PrimitiveType,P)): Likewise.
	(visitPrimitiveAsBoolean(PrimitiveType,P)): Likewise.
	(visitPrimitiveAsByte(PrimitiveType,P)): Likewise.
	(visitPrimitiveAsChar(PrimitiveType,P)): Likewise.
	(visitPrimitiveAsDouble(PrimitiveType,P)): Likewise.
	(visitPrimitiveAsFloat(PrimitiveType,P)): Likewise.
	(visitPrimitiveAsint(PrimitiveType,P)): Likewise.
	(visitPrimitiveAsLong(PrimitiveType,P)): Likewise.
	(visitPrimitiveAsShort(PrimitiveType,P)): Likewise.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2015-09-26  Andrew John Hughes  &lt;gnu_andrew@member.fsf.org&gt;

	* javax/lang/model/type/WildcardType.java:
	Remove unneeded import.
	* javax/lang/model/util/AbstractTypeVisitor6.java:
	Implemented.
	(AbstractTypeVisitor6()): Implemented.
	(visit(TypeMirror)): Likewise.
	(visit(TypeMirror,P)): Likewise.
	(visitUnknown(TypeMirror, P)): Likewise.
	(visitUnion(TypeMirror, P)): Likewise.
	* javax/lang/model/util/ElementKindVisitor6.java:
	Implemented.
	(ElementKindVisitor6): Implemented.
	(ElementKindVisitor6(R)): Likewise.
	(visitExecutable(ExecutableElement,P)): Likewise.
	(visitExecutableAsConstructor(ExecutableElement,P)): Likewise.
	(visitExecutableAsInstanceInit(ExecutableElement,P)): Likewise.
	(visitExecutableAsMethod(ExecutableElement,P)): Likewise.
	(visitExecutableAsStaticInit(ExecutableElement,P)): Likewise.
	(visitPackage(PackageElement,P)): Likewise.
	(visitTypeAsAnnotationType(TypeElement,P)): Likewise.
	(visitTypeAsClass(TypeElement,P)): Likewise.
	(visitTypeAsEnum(TypeElement,P)): Likewise.
	(visitTypeAsInterface(TypeElement,P)): Likewise.
	(visitTypeParameter(TypeParameterElement,P)): Likewise.
	(visitVariable(VariableElement,P)): Likewise.
	(visitVariableAsEnumConstant(VariableElement,P)): Likewise.
	(visitVariableAsExceptionParameter(VariableElement,P)): Likewise.
	(visitVariableAsField(VariableElement,P)): Likewise.
	(visitVariableAsLocalVariable(VariableElement,P)): Likewise.
	(visitVariableAsParameter(VariableElement,P)): Likewise.
	(visitVariableAsResourceVariable(VariableElement,P)): Likewise.
	* javax/lang/model/util/SimpleAnnotationValueVisitor6.java:
	(DEFAULT_VALUE): Added.
	(SimpleAnnotationValueVisitor6()): Implemented.
	(SimpleAnnotationValueVisitor6(R)): Likewise.
	(defaultAction(Object,P)): Likewise.
	(visitBoolean(boolean,P)): Likewise.
	(visitByte(byte,P)): Likewise.
	(visitChar(char,P)): Likewise.
	(visitDouble(double,P)): Likewise.
	(visitFloat(float,P)): Likewise.
	(visitInt(int,P)): Likewise.
	(visitLong(long,P)): Likewise.
	(visitShort(short,P)): Likewise.
	(visitString(String,P)): Likewise.
	(visitType(TypeMirror,P)): Likewise.
	(visitEnumConstant(VariableElement,P)): Likewise.
	(visitAnnotation(AnnotationMirror,P)): Likewise.
	(visitArray(List,P)): Likewise.
	* javax/lang/model/util/SimpleElementVisitor6.java:
	Fix missing brace in Javadoc. Add missing @return
	documentation.
	* javax/lang/model/util/SimpleTypeVisitor6.java:
	(DEFAULT_VALUE): Added.
	(SimpleTypeVisitor6()): Implemented.
	(SimpleTypeVisitor6(R)): Likewise.
	(defaultAction(TypeMirror,P)): Likewise.
	(visitPrimitive(PrimitiveType,P)): Likewise.
	(visitNull(NullType,P)): Likewise.
	(visitArray(ArrayType,P)): Likewise.
	(visitDeclared(DeclaredType,P)): Likewise.
	(visitError(ErrorType,P)): Likewise.
	(visitTypeVariable(TypeVariable,P)): Likewise.
	(visitWildcard(WildcardType,P)): Likewise.
	(visitExecutable(ExecutableType,P)): Likewise.
	(visitNoType(NoType,P)): Likewise.
	* javax/lang/model/util/TypeKindVisitor6.java:
	(TypeKindVisitor6()): Implemented.
	(TypeKindVisitor6(R)): Likewise.
	(visitNoType(NoType,P)): Likewise.
	(visitNoTypeAsNone(NoType,P)): Likewise.
	(visitNoTypeAsPackage(NoType,P)): Likewise.
	(visitNoTypeAsVoid(NoType,P)): Likewise.
	(visitPrimitive(PrimitiveType,P)): Likewise.
	(visitPrimitiveAsBoolean(PrimitiveType,P)): Likewise.
	(visitPrimitiveAsByte(PrimitiveType,P)): Likewise.
	(visitPrimitiveAsChar(PrimitiveType,P)): Likewise.
	(visitPrimitiveAsDouble(PrimitiveType,P)): Likewise.
	(visitPrimitiveAsFloat(PrimitiveType,P)): Likewise.
	(visitPrimitiveAsint(PrimitiveType,P)): Likewise.
	(visitPrimitiveAsLong(PrimitiveType,P)): Likewise.
	(visitPrimitiveAsShort(PrimitiveType,P)): Likewise.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make gjdoc depend on CREATE_WRAPPERS and remove unneeded Automake 1.11 dependencies.</title>
<updated>2015-08-20T02:41:45+00:00</updated>
<author>
<name>Andrew John Hughes</name>
<email>gnu_andrew@member.fsf.org</email>
</author>
<published>2015-08-20T02:41:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/classpath.git/commit/?id=e6bdaa6d46fcd7f4a732eef922f88b890f647fda'/>
<id>e6bdaa6d46fcd7f4a732eef922f88b890f647fda</id>
<content type='text'>
2015-08-07  Uros Bizjak  &lt;ubizjak@gmail.com&gt;

	* configure.ac:
	(tools/gjdoc): Depend on CREATE_WRAPPERS.
	* tools/Makefile.am: Remove unneeded
	dependencies for Automake 1.11.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2015-08-07  Uros Bizjak  &lt;ubizjak@gmail.com&gt;

	* configure.ac:
	(tools/gjdoc): Depend on CREATE_WRAPPERS.
	* tools/Makefile.am: Remove unneeded
	dependencies for Automake 1.11.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert undocumented changes accidentally included with last commit.</title>
<updated>2015-08-13T02:00:30+00:00</updated>
<author>
<name>Andrew John Hughes</name>
<email>gnu_andrew@member.fsf.org</email>
</author>
<published>2015-08-13T02:00:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/classpath.git/commit/?id=1f7a4b1f0727b2d8a29498d78e57309f0bd87a6c'/>
<id>1f7a4b1f0727b2d8a29498d78e57309f0bd87a6c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
