This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=============================================================== | |
Name Type Delta New Old Suggest | |
org.apache.logging.log4j.1.2.api BUNDLE MAJOR 2.22.1 1.2.17 - | |
MAJOR BUNDLE log4j-1.2-api-2.22.1 | |
MAJOR API <api> | |
MAJOR PACKAGE org.apache.log4j | |
ADDED CLASS org.apache.log4j.AppenderSkeleton$NoOpErrorHandler | |
ADDED ACCESS static | |
ADDED IMPLEMENTS org.apache.log4j.spi.ErrorHandler | |
ADDED METHOD <init>() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Add this annotation to the package: | |
* @XmlSchema(xmlns = { | |
* @XmlNs(prefix = "", namespaceURI = Example.NS1), | |
* @XmlNs(prefix = "name2", namespaceURI = Example.NS2)}, elementFormDefault = | |
* XmlNsForm.QUALIFIED) | |
*/ | |
public class Example { | |
@XmlType(namespace = XMLConstants.NULL_NS_URI) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package pl.copernik.servlet; | |
import java.io.IOException; | |
import java.util.Collections; | |
import java.util.Enumeration; | |
import java.util.Map.Entry; | |
import java.util.Objects; | |
import java.util.TreeMap; | |
import javax.servlet.ServletConfig; | |
import javax.servlet.ServletContext; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include "libwrapper.h" | |
int main(int argc, char *const argv[]) { | |
int ctrl = prepare_socket(true); | |
if (argc < 2) { |