Skip to content
This repository has been archived by the owner on Aug 27, 2022. It is now read-only.

Commit

Permalink
8251454: Wrong "self type" in DCTree.DCEndElement
Browse files Browse the repository at this point in the history
Reviewed-by: jjg
  • Loading branch information
pavelrappo committed Aug 19, 2020
1 parent 1da978d commit f825768
Showing 1 changed file with 2 additions and 2 deletions.
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2011, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -326,7 +326,7 @@ public String getText() {
}
}

public static class DCEndElement extends DCEndPosTree<DCStartElement> implements EndElementTree {
public static class DCEndElement extends DCEndPosTree<DCEndElement> implements EndElementTree {
public final Name name;

DCEndElement(Name name) {
Expand Down

0 comments on commit f825768

Please sign in to comment.