You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-java/ini4j/files/ini4j-0.5.2-remove.patch

23 lines
799 B

--- a/org/ini4j/Profile.java 2015-11-03 22:49:34.854486000 +0000
+++ b/org/ini4j/Profile.java 2015-11-03 22:49:53.412486000 +0000
@@ -43,7 +43,7 @@
Section remove(Profile.Section section);
- String remove(Object sectionName, Object optionName);
+ String removeString(Object sectionName, Object optionName);
interface Section extends OptionMap
{
--- a/org/ini4j/BasicProfile.java 2015-11-03 22:50:28.101486000 +0000
+++ b/org/ini4j/BasicProfile.java 2015-11-03 22:51:09.338486000 +0000
@@ -138,7 +138,7 @@
return remove((Object) section.getName());
}
- @Override public String remove(Object sectionName, Object optionName)
+ @Override public String removeString(Object sectionName, Object optionName)
{
Section sec = get(sectionName);