Author: markt Date: Mon Nov 19 22:34:36 2007 New Revision: 596550 URL: http://svn.apache.org/viewvc?rev=596550&view=rev Log: Fix properties
Modified: tomcat/trunk/java/org/apache/tomcat/util/MutableInteger.java (contents, props changed) Modified: tomcat/trunk/java/org/apache/tomcat/util/MutableInteger.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/MutableInteger.java?rev=596550&r1=596549&r2=596550&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/tomcat/util/MutableInteger.java (original) +++ tomcat/trunk/java/org/apache/tomcat/util/MutableInteger.java Mon Nov 19 22:34:36 2007 @@ -1,29 +1,29 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.apache.tomcat.util; - -public class MutableInteger { - protected int value = 0; - public MutableInteger() {} - public MutableInteger(int val) { - this.value = val; - } - - public int get() { return value;} - public void set(int val) {this.value = val;} -} +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.tomcat.util; + +public class MutableInteger { + protected int value = 0; + public MutableInteger() {} + public MutableInteger(int val) { + this.value = val; + } + + public int get() { return value;} + public void set(int val) {this.value = val;} +} Propchange: tomcat/trunk/java/org/apache/tomcat/util/MutableInteger.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: tomcat/trunk/java/org/apache/tomcat/util/MutableInteger.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]