blob: 7c37ce756e7d4b43f59d3e1c233fefb13b35b67d [file] [log] [blame]
#*******************************************************************************
# Copyright (c) 2013 Borland Software Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
# Borland Software Corporation - initial API and implementation
#*******************************************************************************
#!/usr/bin/perl
while (<>) {
if ($_ =~ /.*\".*\"\,*/ && !($_ =~ /\@SuppressWarnings\(\"unchecked\"\)/)) {
chomp $_;
print $_, ' //$NON-NLS-1$', "\n";
}
else {
print $_;
}
}