diff options
-rw-r--r-- | contrib/ChangeLog | 6 | ||||
-rwxr-xr-x | contrib/update-copyright.py | 23 |
2 files changed, 5 insertions, 24 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 726ff7898aa0..392a1eeb2aa4 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,5 +1,9 @@ -2017-01-17 Gerald Pfeifer <gerald@pfeifer.com> +2017-01-20 Gerald Pfeifer <gerald@pfeifer.com> + * update-copyright.py (LibJavaFilter): Remove. + +2017-01-17 Gerald Pfeifer <gerald@pfeifer.com> + * gcc_update: Remove entries related to GCJ and libgcj. Complete copyright years and adjust my e-mail address. diff --git a/contrib/update-copyright.py b/contrib/update-copyright.py index 6bc37043f3a2..fd88e9a1151d 100755 --- a/contrib/update-copyright.py +++ b/contrib/update-copyright.py @@ -611,29 +611,6 @@ class LibGCCFilter (GenericFilter): 'soft-fp', ]) -class LibJavaFilter (GenericFilter): - def __init__ (self): - GenericFilter.__init__ (self) - - self.skip_dirs |= set ([ - # Handled separately. - 'testsuite', - - # Not really part of the library - 'contrib', - - # Imported from upstream - 'classpath', - 'libltdl', - ]) - - def get_line_filter (self, dir, filename): - if filename == 'NameDecoder.h': - return re.compile ('.*NAME_COPYRIGHT') - if filename == 'ICC_Profile.h': - return re.compile ('.*icSigCopyrightTag') - return GenericFilter.get_line_filter (self, dir, filename) - class LibStdCxxFilter (GenericFilter): def __init__ (self): GenericFilter.__init__ (self) |