We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f212483 commit 57460d0Copy full SHA for 57460d0
src/main/java/com/opentok/OpenTok.java
@@ -289,12 +289,6 @@ public Session createSession() throws OpenTokException {
289
return createSession(null);
290
}
291
292
- private static String repeatString(String str, int times){
293
- StringBuilder ret = new StringBuilder();
294
- for(int i = 0;i < times;i++) ret.append(str);
295
- return ret.toString();
296
- }
297
-
298
private static String readXml(String xpathQuery, String xml) throws XPathExpressionException {
299
XPathFactory xpathFactory = XPathFactory.newInstance();
300
XPath xpath = xpathFactory.newXPath();
0 commit comments