summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-05 12:15:21 +0200
committerNoel Grandin <noel@peralex.com>2014-08-08 09:48:18 +0200
commitb58c053fed3c7e2e1e6a4195254e639976a3a809 (patch)
tree9a7b7f6ed06ee9dc53b6b501112a1fe520e4fccb /odk
parentd07539ea5e7c2d99e9cc58a00726ecebe56cf018 (diff)
java: remove unnecessary semi-colons
Change-Id: Ibeeefc6e6ee8f7bed97a02f569f239ff035d38c4
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/Config/ConfigExamples.java4
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/LinguisticExamples.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/OneInstanceFactory.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper_Hyph.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper_Spell.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleHyphenator.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/XHyphenatedWord_impl.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/XMeaning_impl.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/XPossibleHyphens_impl.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/XSpellAlternatives_impl.java2
-rw-r--r--odk/examples/java/EmbedDocument/EmbeddedObject/OwnEmbeddedObject.java2
-rw-r--r--odk/examples/java/EmbedDocument/EmbeddedObject/OwnEmbeddedObjectFactory.java2
13 files changed, 14 insertions, 14 deletions
diff --git a/odk/examples/DevelopersGuide/Config/ConfigExamples.java b/odk/examples/DevelopersGuide/Config/ConfigExamples.java
index 37debea990ff..d7c5792176e0 100644
--- a/odk/examples/DevelopersGuide/Config/ConfigExamples.java
+++ b/odk/examples/DevelopersGuide/Config/ConfigExamples.java
@@ -371,7 +371,7 @@ public class ConfigExamples
aBuffer.append(" ]");
return aBuffer.toString();
}
- };
+ }
/// This method reads information about grid settings
protected GridOptions readGridConfiguration()
@@ -440,7 +440,7 @@ public class ConfigExamples
public abstract void processValueElement( String sPath_, Object aValue_ );
/// process a structural item
public abstract void processStructuralElement( String sPath_, XInterface xElement_);
- };
+ }
/// Internal method to recursively browse a structural element in preorder
public void browseElementRecursively( XInterface xElement, IConfigurationProcessor aProcessor )
diff --git a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/LinguisticExamples.java b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/LinguisticExamples.java
index 451b8bc852ee..da90531248b2 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/LinguisticExamples.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/LinguisticExamples.java
@@ -355,7 +355,7 @@ public class LinguisticExamples
System.out.println("Listener called");
}
- };
+ }
}
diff --git a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/OneInstanceFactory.java b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/OneInstanceFactory.java
index 63c27185c4e6..7025fdd7d648 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/OneInstanceFactory.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/OneInstanceFactory.java
@@ -149,5 +149,5 @@ public class OneInstanceFactory implements
{
return aSupportedSvcNames;
}
-};
+}
diff --git a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper.java b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper.java
index 98f7e27e259e..b304bedc920a 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper.java
@@ -190,5 +190,5 @@ public class PropChgHelper implements
}
return bRes;
}
-};
+}
diff --git a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper_Hyph.java b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper_Hyph.java
index 95047d436bee..a8a3e2375e80 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper_Hyph.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper_Hyph.java
@@ -74,5 +74,5 @@ public class PropChgHelper_Hyph extends PropChgHelper
}
}
}
-};
+}
diff --git a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper_Spell.java b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper_Spell.java
index cf1aef3d0f33..e87df4ad26f1 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper_Spell.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper_Spell.java
@@ -98,5 +98,5 @@ public class PropChgHelper_Spell extends PropChgHelper
}
}
}
-};
+}
diff --git a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleHyphenator.java b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleHyphenator.java
index f7f156feed98..359488231177 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleHyphenator.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleHyphenator.java
@@ -84,7 +84,7 @@ public class SampleHyphenator extends ComponentBase implements
"HyphMinWordLength"
};
aPropChgHelper = new PropChgHelper_Hyph( this, aProps );
- aEvtListeners = new ArrayList<Object>();;
+ aEvtListeners = new ArrayList<Object>();
bDisposing = false;
}
diff --git a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XHyphenatedWord_impl.java b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XHyphenatedWord_impl.java
index 47405dd38a89..039b67f89f09 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XHyphenatedWord_impl.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XHyphenatedWord_impl.java
@@ -94,4 +94,4 @@ public class XHyphenatedWord_impl implements
{
return bIsAltSpelling;
}
-};
+}
diff --git a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XMeaning_impl.java b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XMeaning_impl.java
index fd65d72caf24..133def0e4b0a 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XMeaning_impl.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XMeaning_impl.java
@@ -65,5 +65,5 @@ public class XMeaning_impl implements
{
return aSynonyms;
}
-};
+}
diff --git a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XPossibleHyphens_impl.java b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XPossibleHyphens_impl.java
index dce63f8d8ec9..11eb33fff6f0 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XPossibleHyphens_impl.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XPossibleHyphens_impl.java
@@ -86,4 +86,4 @@ public class XPossibleHyphens_impl implements
{
return aOrigHyphenPos;
}
-};
+}
diff --git a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XSpellAlternatives_impl.java b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XSpellAlternatives_impl.java
index 0c3cdd0bf89e..9b3d671a7b93 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XSpellAlternatives_impl.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/XSpellAlternatives_impl.java
@@ -88,5 +88,5 @@ public class XSpellAlternatives_impl implements
{
return aAlt;
}
-};
+}
diff --git a/odk/examples/java/EmbedDocument/EmbeddedObject/OwnEmbeddedObject.java b/odk/examples/java/EmbedDocument/EmbeddedObject/OwnEmbeddedObject.java
index b59fd4529f71..d84531dcb6d3 100644
--- a/odk/examples/java/EmbedDocument/EmbeddedObject/OwnEmbeddedObject.java
+++ b/odk/examples/java/EmbedDocument/EmbeddedObject/OwnEmbeddedObject.java
@@ -299,7 +299,7 @@ public final class OwnEmbeddedObject extends WeakBase
{
m_xContext = context;
m_aClassID = aClassID;
- };
+ }
public void CloseFrameRequest()
diff --git a/odk/examples/java/EmbedDocument/EmbeddedObject/OwnEmbeddedObjectFactory.java b/odk/examples/java/EmbedDocument/EmbeddedObject/OwnEmbeddedObjectFactory.java
index 84547be8b1a4..662fedd33765 100644
--- a/odk/examples/java/EmbedDocument/EmbeddedObject/OwnEmbeddedObjectFactory.java
+++ b/odk/examples/java/EmbedDocument/EmbeddedObject/OwnEmbeddedObjectFactory.java
@@ -35,7 +35,7 @@ public final class OwnEmbeddedObjectFactory extends WeakBase
public OwnEmbeddedObjectFactory( XComponentContext context )
{
m_xContext = context;
- };
+ }
public static XSingleComponentFactory __getComponentFactory( String sImplementationName ) {
XSingleComponentFactory xFactory = null;