summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/gnu/classpath/tools/getopt/Parser.java4
-rw-r--r--tools/gnu/classpath/tools/rmic/SourceGiopRmicCompiler.java4
2 files changed, 4 insertions, 4 deletions
diff --git a/tools/gnu/classpath/tools/getopt/Parser.java b/tools/gnu/classpath/tools/getopt/Parser.java
index 5b18ecb37..bb38e82ac 100644
--- a/tools/gnu/classpath/tools/getopt/Parser.java
+++ b/tools/gnu/classpath/tools/getopt/Parser.java
@@ -197,7 +197,7 @@ public class Parser
*
* @param headerText the header text
*/
- public void setHeader(String headerText)
+ public synchronized void setHeader(String headerText)
{
this.headerText = headerText;
}
@@ -207,7 +207,7 @@ public class Parser
*
* @param footerText the footer text
*/
- public void setFooter(String footerText)
+ public synchronized void setFooter(String footerText)
{
this.footerText = footerText;
}
diff --git a/tools/gnu/classpath/tools/rmic/SourceGiopRmicCompiler.java b/tools/gnu/classpath/tools/rmic/SourceGiopRmicCompiler.java
index 335480840..b7ad7f440 100644
--- a/tools/gnu/classpath/tools/rmic/SourceGiopRmicCompiler.java
+++ b/tools/gnu/classpath/tools/rmic/SourceGiopRmicCompiler.java
@@ -140,7 +140,7 @@ public class SourceGiopRmicCompiler
/**
* Clear data, preparing for the next compilation.
*/
- public void reset()
+ public synchronized void reset()
{
packag = name = implName = stubName = null;
implementedRemotes.clear();
@@ -329,7 +329,7 @@ public class SourceGiopRmicCompiler
* the class to name
* @return the name of class as it should appear in java language
*/
- public String name(Class nameIt)
+ public synchronized String name(Class nameIt)
{
if (nameIt.isArray())
{