SideBySide2: Hide empty pane for added and deleted files

Add new user preference and increase schema version.

Change-Id: I156e9af944ff16d8f85946b40a7998e8c3861d5c
This commit is contained in:
David Ostrovsky
2014-05-01 21:55:00 +02:00
committed by Shawn Pearce
parent e35392e5f4
commit a64d689c6b
12 changed files with 119 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ import java.util.List;
/** A version of the database schema. */
public abstract class SchemaVersion {
/** The current schema version. */
public static final Class<Schema_96> C = Schema_96.class;
public static final Class<Schema_97> C = Schema_97.class;
public static class Module extends AbstractModule {
@Override

View File

@@ -0,0 +1,25 @@
// Copyright (C) 2014 The Android Open Source Project
//
// Licensed 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 com.google.gerrit.server.schema;
import com.google.inject.Inject;
import com.google.inject.Provider;
public class Schema_97 extends SchemaVersion {
@Inject
Schema_97(Provider<Schema_96> prior) {
super(prior);
}
}